$(document).ready(function(){

	$("ul.topnav a").mouseenter(
	
		function() {
		
			//var n = $(this).parent().find(".subnav_wrapper").queue("fx");
		
			$(this).parent().find(".subnav_wrapper").slideDown('fast').show();
			
			$(this).parent().mouseleave(
				
				function(){
					$(this).parent().find(".subnav_wrapper").stop(false, true).slideUp('slow'); 
				}
				
			);
			
		}
		
	);

});
