$(document).ready(function() {
	$(".newsviewer h5").bind('mouseenter', function() {
		$('.newsviewer .news_item').removeClass('item1');
		$(this).parent().parent().addClass('item1');
		$(this).find('a').css('text-decoration', 'none');
	});

	
});
	

