$(document).ready(function() {
	$("#comune").load("getComuniContatto.php", {Provincia :$("#provincia").val()});
						   
	$("#provincia").change(function () {
        $("#comune").load("getComuniContatto.php", {Provincia : $(this).val()});
    });
	
	$("[class^=validate]").validationEngine({
		success :  function() { $("#ric_info").parent().load("sendEmailContatto.php", {Provincia : $("#provincia").val(), Comune : $("#comune").val(), Nome : $("#nome").val(), email : $("#email").val(), Richiesta : $("#richiesta").val()}) },
		failure : function() { callFailFunction()  }
		})
						   
	$('#nome').focus(
	  function()
	  {
	    if (($(this).attr("value")) == "NOME E COGNOME") {
		  $(this).attr("value", "");
		}
	  }
	);
	
	/*$('#nome').blur(
	  function()
	  {
	    if (($(this).attr("value")) == "") {
		  $(this).attr("value", "NOME E COGNOME");
		}
	  }
	);*/
	
	$('#email').focus(
	  function()
	  {
	    if (($(this).attr("value")) == "NOME@DOMINIO.IT") {
		  $(this).attr("value", "");
		}
	  }
	);
	
	/*$('#email').blur(
	  function()
	  {
	    if (($(this).attr("value")) == "") {
		  $(this).attr("value", "NOME@DOMINIO.IT");
		}
	  }
	);*/
	
	$('#richiesta').focus(
	  function()
	  {
	    if (($(this).attr("value")) == "SCRIVI QUI ...") {
		  $(this).attr("value", "");
		}
	  }
	);
	
	/*$('#richiesta').blur(
	  function()
	  {
	    if (($(this).attr("value")) == "") {
		  $(this).attr("value", "SCRIVI QUI ...");
		}
	  }
	);*/
  });
