$(document).ready(function(){

	settings = {	
		className :['body'], 
		path:'_lib/',
		opacity : 3, 
		top:5, 
		left:5, 
		right:5, 
		bottom:5, 
		offsetTop:0, 
		offsetLeft:0, 
		sizeAdjustWidth:0,
		sizeAdjustHeight:0, 
		roundedCornerTopLeft:0,
		roundedCornerTopRight:0,
		roundedCornerBottomLeft:0,
		roundedCornerBottomRight:0
	};
	var myShadows = new shadows(settings);
		settings = {	
		className :['shadows_____'], 
		path:'_lib/',
		opacity : 1, 
		top:5, 
		left:5, 
		right:5, 
		bottom:5, 
		offsetTop:0, 
		offsetLeft:0, 
		sizeAdjustWidth:0,
		sizeAdjustHeight:0, 
		roundedCornerTopLeft:0,
		roundedCornerTopRight:0,
		roundedCornerBottomLeft:0,
		roundedCornerBottomRight:0
	};
	var myShadows = new shadows(settings);
})


$(document).ready(function(){
	$("#element_menu2 LI").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").fadeOut("fast");
		 $(this).siblings().children("ul").fadeOut("fast");
	   });
	   
	});
	$("body").click(function(){
	  $("#element_menu2 UL UL").fadeOut("fast");
	});
	$("#corps").mouseover(function(){
	  $("#element_menu2 UL UL").fadeOut("fast");
	});
	
});