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


