$(document).ready(function(){
		$('.topmenu ul li').hover(
			function() {
				
				$(this).find('ul:first').stop(true, true);
				$(this).find('ul:first').show();
			},
			function() {            
				$(this).find('ul:first').hide(); 
			}
		);    
	});