// JavaScript Document
var active_page;
var periodical;
var mySlide1;
var mySlide2;
window.addEvent('domready', function(){
$('contact_form').addEvent('submit', function(e) {
	/**
	 * Prevent the submit event
	 */
	new Event(e).stop();
 	
	/**
	 * This empties the log and shows the spinning indicator
	 */
	var log = $('log_res').empty().addClass('ajax-loading');
 
	/**
	 * send takes care of encoding and returns the Ajax instance.
	 * onComplete removes the spinner from the log.
	 */
	 if($('contact_form').nom.value !='' && $('contact_form').mail.value !='')
	this.send({
		update: log,
		onComplete: function() {
			log.removeClass('ajax-loading');
		}
	});
	else
	{
		alert('Les champs Nom et Email sont obligatoires!! Merci')
		log.removeClass('ajax-loading');
	}
});// JavaScript Document

});






