$(function() {
	jQuery("#mainMenu a.headLink").each(
		function(i, elm){
			jQuery(elm).parent().hover(
			  function () {
			  	jQuery("#mainMenu ul ul").each(
			  		function(i, elm){
			  			jQuery(this).css("display", "none");
			  		
			  		}
			  	)
			  
				jQuery(this).children().filter("ul:first").fadeIn("slow");
			  },
			  
			  function () {
				jQuery(this).children().filter("ul:first").css("display", "none");
			  }
			);
		}
	)	
});

