
	
$(document).ready(function(){
						   
		
		$(".smenu").hide();
		$(".menutop:has(.smenu)").mouseover(function () {
				if($(".smenu:visible").size()==1 && $(".smenu:visible",this).size()==0){	
				$(".smenu:visible").fadeOut(300);
				$(".menutop a.aae").removeClass("hover");
				}
				$("a.aae",this).addClass("hover");
        		$(".smenu:hidden",this).fadeIn(300);
		})
			
			
		$("img,#soustitre,#logo,#colright,#content_top").mouseover(function () {
							
				$(".menutop a.aae").removeClass("hover");								  
				$(".smenu:visible").fadeOut(300);
				
		  });
		
		if($("#phototheque")[0]){
			$("#phototheque").ready(function(){$('a.gallery').colorbox();});
		}
});



