$(function(){


	$('div.shop ul li.name a').click(function(){
		var table = $(this).parent().parent().parent().children('div.detail');
		
		table.slideToggle();
		
		return false;
	});

});
