$(document).ready(function(){	$("ul.slide li.mark a:first-child").each(function() {		$(this).next().hide(); 	});		$("ul.slide li.mark").hover(function(){	/*	$(this).find('ul.slide_sub').slideDown("slow"); */		$(this).find('ul.slide_sub').show();		}, function(){	/*	$(this).find('ul.slide_sub').slideUp("slow"); */		$(this).find('ul.slide_sub').hide();	});		});
