$('.news_pagination').click(function()
{
	var url=$(this).attr('href');
	$('#news_content').load(url,'');
	return false;
});

