﻿// Paramétrage Jquery

jQuery().ready(function(){
	
	$("div#menu ul li").hover(
		function(){
	   		$(this).animate({  marginLeft: "0"}, 200);
	 	}
		,
		function(){
	   		$(this).animate({  marginLeft: "-25"},  800, "bounceout" );
	 	}	
	)
	
	$.timer({name:"accueil", interval: 3}, function() {
	  	$("div#menupage ul li#retour").animate(
			{  marginLeft: "0"},
			800, 
			function() {
				$("div#menupage ul li#retour").animate({  marginLeft: "-25"}, 800, "bounceout" );
			}
		);
	});
	
	$("div#menupage ul li.menu").hover(
		function(){
			$.stopTimer("accueil");
	   		$(this).animate({  marginLeft: "0"}, 200);
	 	}
		,
		function(){
			$.runTimer("accueil");
	   		$(this).animate({  marginLeft: "-25"},  800, "bounceout" );
	 	}	
	)
	/*
	$("div#menupage ul li ul li").hover(
		function(){
			$.stopTimer("accueil");
	   		$(this).animate({  marginLeft: "0"}, 200);
	 	}
		,
		function(){
			$.runTimer("accueil");
	   		$(this).animate({  marginLeft: "-25"},  800, "bounceout" );
	 	}	
	)*/
	
	$("#form_newsletter").RSV({
		onCompleteHandler: myFinalFunction,
		errorFieldClass: "nonvalide",
		errorTextIntro: "Les données que vous avez fournies ne sont pas correctes :",
		displayType:"display-html",
		rules: 	[
				"required,nom,Veuillez renseigner votre NOM.",
				"required,email,Veuillez renseigner votre ADRESSE MAIL.",
				"valid_email,email,Veuillez entrer une ADRESSE MAIL valide."
				]
	});
	
	function myFinalFunction(){
		return true;
	}

	
});