$(document).ready(function(){
	// Menu
		var pasToucheHaut = "";
		var pasToucheBas = "";
		var animHautFinie = "ok";
		var animBasFinie = "ok";
		
		// Menu Haut
		$('.menuRolloverHaut').hover(function() {
			if(animHautFinie == "ok") {
				if($(this).css("color") == "rgb(255,255,255)" || $(this).css("color") == "rgb(255, 255, 255)" || $(this).css("color") == "#ffffff" || $(this).css("color") == "#fff") {
					pasToucheHaut = "ok";
				} else {
					pasToucheHaut = "no";
				}
			
				$(this).animate({ "color": "rgba(153,0,51,1)" }, 200);
			}
		}, function() {
			if(pasToucheHaut == "ok") {
				animHautFinie = "no";
				
				$(this).animate({ "color": "rgba(255,255,255,1)" }, 200, function() {animHautFinie = "ok";});
				pasToucheHaut = "";
			}
			pasToucheHaut = "";
		});
	
		// Menu Bas
		$('.menuRolloverBas').hover(function() {
			if(animBasFinie == "ok") {
				if($(this).css("color") == "rgb(51,51,51)" || $(this).css("color") == "rgb(51, 51, 51)" || $(this).css("color") == "#333333" || $(this).css("color") == "#333") {
					pasToucheBas = "ok";
				} else {
					pasToucheBas = "no";
				}
				
				$(this).animate({ "color": "rgba(153,0,51,1)" }, 200);
			}
		}, function() {
			if(pasToucheBas == "ok") {
				animBasFinie = "no";
				
				$(this).animate({ "color": "rgba(51,51,51,1)" }, 200, function() {animBasFinie = "ok";});
				pasToucheBas = "";
			}
			pasToucheBas = "";
		});
});
