jQuery(function($) {
	$('.hnews').each(function(index){
		$(this).mouseover(function() {
			$('.cnews').children('li').addClass('hidenews').end().children('li:first-child, li:nth-child(2)').removeClass('hidenews');
			$('.cnews').eq(index).children('li').removeClass('hidenews');
		});
		$(this).mouseout(function() {
			$('.cnews').children('li').addClass('hidenews').end().children('li:first-child, li:nth-child(2)').removeClass('hidenews');
		});
	});
	$('.cnews').each(function(index){
		$(this).mouseover(function() {
			$('.cnews').children('li').addClass('hidenews').end().children('li:first-child, li:nth-child(2)').removeClass('hidenews');
			$('.cnews').eq(index).children('li').removeClass('hidenews');
		});
		$(this).mouseout(function() {
			$('.cnews').children('li').addClass('hidenews').end().children('li:first-child, li:nth-child(2)').removeClass('hidenews');
		});
	});
});
