$(document).ready(function(){

		$('#ardeche').mouseenter(function(){
				$(this).animate({ backgroundColor: "#99a3c8", color:"#333" });
			});
	   $('#ardeche').mouseleave(function(){
				$(this).animate({ backgroundColor: "#717eab", color:"#fff" });
			});
	   $('#bretagne').mouseenter(function(){
				$(this).animate({ backgroundColor: "#3c4ea4" });
			});
	   $('#bretagne').mouseleave(function(){
				$(this).animate({ backgroundColor: "#0f2178" });
			});
		
});
