jQuery(document).ready(function(){
	jQuery( '#nav_Primary > li' ).hover(function(){
		jQuery(this).find('ul')
				.stop( true, true )
				.animate(
					{height:'show'},
					{duration: 300, easing: 'swing', queue: true}
				);
				jQuery(this).find('a:lt(1)').addClass('down');
				jQuery(this).find('ul').css("z-index","99999999");
	},
		
		function() {
		jQuery(this).find('ul')
				.stop( true, true )
				.animate(
					{height:'hide'},
					{duration: 150, easing: 'swing', queue: true}
				);	
				jQuery(this).find('a').removeClass('down');
				jQuery(this).find('ul').css("z-index","1");
	});
});
