// JavaScript Document

/* FONCTIONS POUR LA PAGE HTML */


$(document).ready(function() { /* OUVRE LE SCRIPT INITIAL */
//LE SCRIPT
$("#menurealisations").hide();

  		$('span.btnreal').mouseover(function() {					 
		$("#menurealisations").fadeIn("slow", "linear");
		
		
		});
		$('div#menurealisations').mouseleave(function() {					 
		$("#menurealisations").fadeOut("slow", "linear");
		
		

		
						 
				
});
});



