// JavaScript Document

		function adjustContentHeight() {
            var constant = 56 + 150; //<- VARIABILE IN BASE A COSA C’è NELLA PAGINA SOPRA IL DIV
            if (window)
                $('#pageContent').height($(window).height() - constant);
            else
                $('#pageContent').height($(document).height() - constant);
        }

        $(document).ready(function () {
            adjustContentHeight();
			$("#contactForm").validate(
				{
					messages: {
							nome: "Inserisci il tuo nome e cognome",
							email: "Inserisci un indirizzo e-mail valido",
							messaggio: "Inserisci il testo del messaggio"
					}
				}
			);
        });

        $(window).resize(function () {
            adjustContentHeight();
        });
        
        $(function () {
            $("#testo").resizable({
                handles: "se",
                containment: "#contactForm_div"
            });
        });
