// sousMenu
$(document).ready(function() {

	$('ul.sf-menu').superfish({ 
	    dropShadows: false,                            // disable drop shadows 
	    disableHI:     false
	}); 
	
	        
	// Sous-Catégories   
	 $("#Commerces li").mouseover(function () { $(this).next(".SousCategories").slideToggle().siblings(".SousCategories:visible").slideUp("fast");; });
	 
	// Personne ressource
	$("#Ressource").click(function () { $("#Ressources").slideToggle("fast"); });
	
	// Flash news
	$(".Fermer").click(function () { $("#FlashNews").fadeOut("fast") });
	
	// Galerie photos
	$( function(){ $(".Images").tipTip({delay:"200"}); });
	
	// Raccourcis
	$("#Raccourcis li").click(function () { $(this).next(".Description").slideToggle("slow").siblings(".Description:visible").slideUp("fast");; });

});
