$(document).ready(function(){
	$('.info-image').mouseover(function() {
		var id = $(this).attr('id').replace('link', '');
		var htmlStr = $('#div'+id).html();
		$('#news_bottom-text').html(htmlStr);
	});
	var id1 = $('.news_bottom div:nth-child(2)').find('a').attr('id').replace('link', '');
	var htmlStr1 = $('#div'+id1).html();
	$('#news_bottom-text').html(htmlStr1);	
});
