function news_init(){
    $("#news").mouseleave(function(){
	    $(this).find("dd").fadeOut();
	});
    $("#news dt").mouseenter(function(){
	    $(this).next("dd").fadeIn();
	});
}

