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


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

});
