// JavaScript Document
$(function(){
	$('.like_win_news_box_nohover').hover(
		function(){
			$(this).addClass('like_win_news_box');
			$(this).find('img.big_photo[src=""]').each(function(){
				$(this).attr('src', $(this).next().text());
			});	
		},
		function(){		
			$(this).removeClass('like_win_news_box');
		}
	);
});
