$(document).ready(function(){
	 $('#invia').bind('click', function(event){
        event.preventDefault();
        subcontact2();
    });
	
});
function subcontact2(){
	 $("<img/>").attr("src", 'img/loading.gif').attr('alt', '').attr("id","loading").appendTo($("#form2"));
	  $('input[type=text],textarea').each(function(i,item){
	  $(this).css({
		borderBottomWidth: "1px",
	  	borderBottomColor: "#66493A",
	  	borderBottomStyle: "solid"
	  });
	  });

    $.ajax({
        type: 'POST',
        url: 'fuzajax.php',
        data: $('#form-contatti').serialize(),
        success: function(data){
          if(data=='ok'){
			  $('#form-contatti').animate({opacity:0},'slow',function(){$(this).remove();});
			  $("#mex").html('<p>Messaggio inviato.<br /> Grazie per averci contattato.</p>');
			  } else {
			 $("#mex").html(data);

			}
           	$('#loading').remove();
			
        }
    });
    return false
}
function clearText(field){if (field.defaultValue == field.value) 
field.value = '';}
function restoreText(field) {if (field.value == '') field.value = 
field.defaultValue;}
