$(document).ready(function() {

 /* Submenu
 ---------------------------------------------- */
 $('#menu dd ul').each(function() {
	 $(this).hide();
	 $(this).find('li ul').each(function() {
		 $(this).hide();
	 }
	 );
 });

 $('#menu dd ul li').hover(
	function() {
		$(this).find('ul').show();
	},
	function() {
		$(this).find('ul').hide();
	}
 );

 $('#menu dd').hover(
	function() {
		$(this).find('ul').fadeIn('fast');
		$(this).parent().find('a:first').addClass("hover2");
		$(this).css('z-index', '90');
	},
	function() {
		$(this).find('ul').fadeOut('fast');
		$(this).parent().find('a:first').removeClass("hover2");
		$(this).css('z-index', '10');
	}
 );


});
