$(document).ready(function(){
	$("#navigation_top div").each(
		function(){
			$(this).mouseover(
				function(){
					$(this).children("ul").fadeIn("slow");
					if($.browser.msie) {
						var hauteur = $(this).width();	
						$(this).children("ul").css({marginLeft:"-"+hauteur+"px"});   
					}
					$(this).prev().children("ul").fadeOut("fast");
					$(this).siblings().children("ul").fadeOut("fast");
				}
			);
		}
	);
	$("body").click(
		function(){
			$("#navigation_top div ul").fadeOut("fast");
		}
	);
});

