$(document).ready(function(){

	////////////////////////////////
	//mega drop down
	
	$(".nav_museum_item").hover(
		function () {
			$(".nav_museum_item_link", this).css({'border-bottom-width' : '6px', 'height' : '34px'});
			$(".mega_dd", this).stop(true, true).delay(150).fadeIn(150);
	  	},
	  	function () {
			$(".nav_museum_item_link", this).css({'border-bottom-width' : '4px', 'height' : '36px'});
			$(".mega_dd", this).stop(true, true).css("display", "none");
	  	}
	);
	
	////////////////////////////////
	//topnav drop down
	$(".nav_top").hover(
		function () {
			$(".top_dd", this).stop(true, true).delay(150).fadeIn(150);
	  	},
	  	function () {
			$(".top_dd", this).stop(true, true).css("display", "none");
	  	}
	);
	
/*	
	$(".nav_top").hover(
		function () {
			$(".top_dd", this).stop(true, true).delay(150).fadeIn(150);
		},
		function () {
			$(".top_dd", this).stop(true, true).css("display", "none");
		}
	);
*/	
});
