jquery手风琴简单制作
$(function(){
	$(".index_product_l_lmc li").click(function(){
		$(".index_menu_slide").slideUp('slow');//隐藏
		$(this).next().slideDown('slow');
		 return false; //阻止默认时间
	});
})