$(document).ready(function(){

	$("#MenuImagesGrouping .MakeMenu").each(function(){
	
		$(this).mouseover(function(){
		
			//$(this).children("ul").slideDown("fast");
			
			if($.browser.msie) {
			
				var hauteur = $(this).width();
		//		$(this).children("ul").css({marginLeft:"-"+hauteur+"px"});
			}
			
			$(this).prev().children("ul").css('display','none');
			$(this).siblings().children("ul").css('display','none');
			$(this).children("ul").css('display','block');
		});
		
		
	});
	
	$("#MenuImagesGrouping div ul").each(function(){
	
		$(this).mouseover(function(){
		
			//$(this).children("ul").slideDown("fast");
			
			if($.browser.msie) {
			
				var hauteur = $(this).width();
			//	$(this).children("ul").css({marginLeft:"-"+hauteur+"px"});
			}
			
			$(this).prev().children("ul").css('display','none');
			$(this).siblings().children("ul").css('display','none');
			$(this).children("ul").css('display','block');
		});
		
		
	});
	
	$("#MenuImagesGrouping").hover(
      function () {
         
      }, 
      function () {
      	 $("#MenuImagesGrouping div ul").css('display','none');
      }
    );

	$(".MakeMenu").hover(
      function () {
         
      }, 
      function () {
      	 $(this).children("ul").css('display','none');
      }
    );
	
	
});


