

var transColor=function( balise, firstColor, secondColor){
		$(balise).css({backgroundColor: secondColor});
	    $(balise).hover(function() { 
	    			
	     
                $(this).stop().animate({ backgroundColor: firstColor}, 800);  
                },function() {  
                $(this).stop().animate({ backgroundColor: secondColor }, 800);  
 });  

	
	
	
	
	
	
	
	
	
	}





