/*
 * newicon.js
 *
 */

var today = new Date();


$(function(){
	$('.loadNewIcon').each(function(){
		var jsPath = $(this).text();
		var jqPath = $(this);
		$(this).html('');
		$.getScript("http://net-bp.co.jp/"+jsPath+"/new_icon.js",function(){
			var ago3 = new Date(entryDay.getTime()+(3 * 24 * 3600 * 1000));
			if(ago3>=today)jqPath.html('<img class="myNew" src="img/ico_new.gif" alt="new">');
		});
	});
});
