
// Le code à MAT
	$(document).ready(function(){

				$("#dropMenu .menuElement").hover(function(){
					$("#dropMenu").children().stop(true,true);
					$(this).addClass("current");
					$(this).children(".sublist").show();
				},function(){
					$(this).children(".sublist").hide();
					$(this).removeClass("current");
				});
				
				$("#dropMenu .menuElement .subMenu").hover(function(){
					$("#dropMenu").children().stop(true,true);
					$(this).children(".subMenuChoices").show();
				},function(){
					$(this).children(".subMenuChoices").hide();
				});
				
				$("#dropMenu .menuElement:eq(5) .subMenuChoices").css("left","-400px")
				
			});