
// 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(){
//					$(this).find('img').each(function(){
//						$(this).attr('src','images/fleche_over.jpg');
//					});
					$("#dropMenu").children().stop(true,true);
					$(this).children(".subMenuChoices").show();
				},function(){
					$(this).parent().css('background-color',false);
//					$(this).find('img').each(function(){
//						$(this).attr('src','images/fleche.jpg');
//					});
					$(this).children(".subMenuChoices").hide();
				});
				
				$("#dropMenu .menuElement .subMenu .subMenuChoices").hover(function(){
//					$(this).parent().find('img').each(function(){
//						$(this).attr('src','images/fleche.jpg');
//					});
				},function(){
//					$(this).parent().find('img').each(function(){
//						$(this).attr('src','images/fleche_over.jpg');
//					});
				});
				
				$("#dropMenu .menuElement:eq(5) .subMenuChoices").css("left","-400px")
				
			});
