jQuery(document).ready(function($){
	$('.menu-item ul').css('opacity', 0);
	$('.menu-item').hover(
		function(){
			var e =$(this).find('ul');
			e.show();
			e.fadeTo(250, 1);
		},
		function(){
			var e =$(this).find('ul');
			e.fadeTo(250, 0, function(){
				e.hide();
			});
		}
	);
});  