
$(document).ready(function(){
	var navMore = $(".nav-more");
	navMore.defaultHeight = navMore.height();
	navMore.defaultPadding = navMore.css("paddingBottom");
	navMore.hide();
	//navMore.height(0).css({paddingBottom: 0});
	$(".Header div.more").hover(function() {
		//navMore.stop(true, false).animate({height: navMore.defaultHeight, paddingBottom: navMore.defaultPadding});
		navMore.show();
	}, function() {
		navMore.hide();
		//navMore.stop(true, false).animate({height: 0, paddingBottom: 0});
	}); 
	
	var navMoreStay = $(".nav-more-stay");
	navMoreStay.defaultHeight = navMoreStay.height();
	navMoreStay.defaultPadding = navMoreStay.css("paddingBottom");
	navMoreStay.hide();
	//navMoreStay.height(0).css({paddingBottom: 0});
	$(".Header div.more-stay").hover(function() {
		//navMoreStay.stop(true, false).animate({height: navMoreStay.defaultHeight, paddingBottom: navMoreStay.defaultPadding});
		navMoreStay.show();
	}, function() {
		navMoreStay.hide();
		//navMoreStay.stop(true, false).animate({height: 0, paddingBottom: 0});
	}); 
});

