$(document).ready(function(){
	$('#idSxHomeModulo').hide();
	$('a#paragraphAnchor').click(function(){
		$('#idSxHome').hide();
		$('#idSxHomeModulo').slideDown('slow');
	});

	$('#idSendMail').click(function(){
		var name = $('#idName').val();
		var mail = $('#idMail').val();
		var tel =  $('#idTel').val();
		var info = $('#idInfo').val();
		var datastr ='name=' + name + '&mail=' + mail + '&tel=' + tel + '&info=' + info;
		setTimeout("send('"+datastr+"')",2000);
		
	});
	return false;
});

function send(datastr){
	$.ajax({
		type: 'POST',
		url: 'template/template_send_mail.php',
		data: datastr,
		cache: false,
		error: function(){ 
        	alert('Errore del sistema i dati non sono stati inviati correttamente');
		},
		success: function(html){
			$("#idSxHomeModulo").hide();
			$("#idRespHome").fadeIn("slow");
			$("#idRespHome").html(html);
			setTimeout('$("#idRespHome").fadeOut("slow")',2000);
			setTimeout('$("#idSxHome").fadeIn("slow")',2900);
		}
	});
}





