function carica_contatti(){
	var rand = Math.round(Math.random()*1000000);
	var file = "ajax/contatti/form_contatti.inc.php?rand=" + rand
	
	new Ajax.Updater('presentazione_1' , file , {
		onComplete : function(resp){
			$('presentazione_1').fade({ duration: 1.0 , from: 0 , to: 1});
		}
	} );
}


function invia_form_contatti(){
	var rand = Math.round(Math.random()*1000000);
	var file    = "ajax/contatti/invia_form.inc.php?rand=" + rand ; 
	var arr_form = $('form_contatti').serialize(true);
	new Ajax.Request(file , {
		method : 'post' , 
		parameters : arr_form , 
		onSuccess : function(resp){
			var valore = resp.responseText ; 
			if(valore=="1")carica_contatti();
			else alert(valore);
		}
	});
}
