$(function(){
	$('div.mainnews dd').hover(function(){
		$(this).css({backgroundColor:'#f0ece4'});
	},function(){
		$(this).css({backgroundColor:'#ffffff'});
});


$('div.mainnews dd a').each(function(){
		var Href = $(this).attr('href');
		$(this).parent().click(function() {
			window.open(Href,'_self');
			return false;
		});
	});

});

