$(document).ready(function(){
$("div.meat dd:not(:first)").hide();
$("div.meat dt a").click(function(){
$("div.meat dd:visible").slideUp("slow");
$(this).parent().next().slideDown("slow");
return false;
});
});
