$(document).ready(function() {		 			
		 
	
		 $("#column_right").hide().fadeIn("slow");	
		

		$(".band-tutoriel").bind("mouseenter", function(e)
		 {
			$(this).find("img").hide().fadeIn("fast");
		 });
		
		
		$("div#mini_box h2").bind("mouseenter", function(e)
		 {
			$(this).hide().fadeIn("fast");
		 });
});

