$(function()
{
	var n = new Date().getTime();
	$('span.hidden').each(function(){
		var t = new Date($(this).text()).getTime();
		if (n - t < 86400000 * 50)
		{
			$(this).parents('h2').children('img').attr('src','http://www.zensanpairen.or.jp/publication/images/new.gif');
		}
	});		   
});