$(document).ready(function(){
$("div.box1").show();
$("div.boxhead a").click(function(){
$(this).parent().next().slideUp("slow");
return true;
});
});



