// JavaScript Document

 jQuery(document).ready(function(){
     $("#menu  > li").hover(
      function () {
		   $(this).children("div:first").fadeIn(400);
		   if($(this).children("a").attr("id") == "linkSubmenu1"){
			 $(this).children("ul").attr("style", "background-image:url(images/submenu1_new.jpg);left:-280px;height:30;");
			 $(this).children("ul").children("li:first").addClass("margin_left_165");
			 $(this).children("ul").fadeIn(400);
			 $(".cover").attr("style", "height:0px;");
		  }
		  else if($(this).children("a").attr("id") == "linkSubmenu2"){
			 $(this).children("ul").attr("style", "background-image:url(images/submenu2_new.jpg);left:-413px;height:30;");
			 $(this).children("ul").children("li:first").addClass("margin_left_410");
			 $(this).children("ul").fadeIn(400);
			 $(".cover").attr("style", "height:0px;");
		  }
      }, 
      function () {
		  $(".cover").attr("style", "height:30px;");
		  $(this).children("div:first").fadeOut(400);
		  $(this).children("ul").fadeOut(400);
      }
    );
 }
);


