$(document).ready(function(){
$(".togglebox").hide(); 
$("dt").hover(function(){
//$(this).next(".togglebox").slideToggle("slow");
$(this).next(".togglebox").fadeIn("fast");
},
function(){
$(this).next(".togglebox").fadeOut("fast");
//return true;
});
});
