// JavaScript Document
$(function() {
});
// JavaScript Document

function showmenuhaut(id){
	if(!$("#Idulmenu").hasClass(id)){
		$("#"+id+"haut").stop(true,true);
		$("#"+id+"haut").animate( { color:"#e1ba77" }, 200);
	}
}

function hidemenuhautAcc(id,page){
	if(!$("#Idulmenu").hasClass(id)){
		$("#"+id+"haut").stop(true,true);
		if(page=='LOR'||page=='Recettes'){
			document.getElementById("Accueilhaut").style.color="#e1ba77";
		}
		else
		{
			$("#"+id+"haut").animate({ color:"#872727" }, 600);
		}
	}
}
function hidemenuhaut(id){
	if(!$("#Idulmenu").hasClass(id)){
		$("#"+id+"haut").stop(true,true);
		$("#"+id+"haut").animate({ color:"#872727" }, 600);
	}
}

function colorPageHorsMenu(id) {
		document.getElementById(id).style.color="blue";
	 
}




$(document).ready(function() {
						   
	$("#"+$("#Idulmenu").attr("class")).addClass("current");	
	
	$(function() { $("#Idulmenu").lavaLamp({ fx: "backout", speed: 2000 })});
	
	$("#ajax-loading").ajaxStart(function(){
		$(this).show();
	});
	
	$("#ajax-loading").ajaxStop(function(){
		$(this).hide();
	});	

});	

