$(document).ready(function(){
	$("dd").click(function(){
		location.href = $("a", $(this)).attr("href");
	});
	$("#newslent div.announcement ul li").click(function(){
		location.href = $("a", $(this)).attr("href");
	});
	
	$("dd").hover(function(){
			$(this).addClass("hover");
		},
		function(){
			$(this).removeClass("hover");
		}
	);
	$("#newslent div.announcement ul li").hover(function(){
			$(this).addClass("hover");
		},
		function(){
			$(this).removeClass("hover");
		}
	);
});