// JavaScript Document

$(document).ready(function() {
								
  $("#navigation .lescat a").mouseover(function() {
											  
	$(this).animate({ backgroundColor: "#00aeef" }, 400)
	//$(this).animate({ color: "#64605f" }, 1000)
	
  });
  $("#navigation .lescat a").mouseout(function() {
											  
	$(this).animate({ backgroundColor: "#64605f" }, 400)
	//$(this).animate({ color: "#00aeef" }, 1000)
	
  });
  
  
  $("#navigation .connexes a").mouseover(function() {
											  
	$(this).animate({ backgroundColor: "#64605f" }, 400)
	//$(this).animate({ color: "#64605f" }, 1000)
	
  });
  $("#navigation .connexes a").mouseout(function() {
											  
	$(this).animate({ backgroundColor: "#b4b4b4" }, 400)
	//$(this).animate({ color: "white" }, 1000)
	
  });
  
  
   $("#navigation strong a").mouseout(function() {
		$(this).animate({ backgroundColor: "#00aeef" }, 400)									  
   });											  
  
});// end doc ready
