function PNHover(){	
	for(var i=0;i<3;i++){
		$(this).parent().find('.PNItem'+i).removeClass('ActiveArt');
		$(this).parent().parent().find('.PNMain').find('.PNItem'+i).removeClass('ActiveArt');
	}
	var k=0;
	if(this.className=='PNItem0'){k=0;}
	else if(this.className=='PNItem1'){k=1;}
	else if(this.className=='PNItem2'){k=2;}
	$(this).addClass('ActiveArt');
	$(this).parent().parent().find('.PNMain').find('.PNItem'+k).addClass('ActiveArt');
}

function InitPhotoNews(){
	$('div.PhotoNews').each(
		function(){
			$('.PhotoNews .PNButton li').mouseover(PNHover);
		}
	);
}
