// JavaScript Document


$(document).ready(function()
{

 $("#navlist a").hover(
      function () {
        $(this).parent().addClass("imghover");
      }, 
      function () {
	   $(this).parent().removeClass("imghover");  
       $(this).parent().addClass("imgnormale");
      }
    );
})



function cambiabottone(){
if (document.dati.consenso.checked == true) {
			document.forms.dati.bottone.disabled=false;
			}
			else {
			document.forms.dati.bottone.disabled=true;
			}
}

