$(function(){
	$("#debug a").toggle(function(){
		$("#container").css("background","url(/images/common/960.gif) repeat-y center top");
		$("#debug a").text("960 grid on. ");
	},function(){
		$("#container").css("background","none");
		$("#debug a").text("960 grid off.");
	});
	
	// passage time
	var passageDate = 20;
	// current date
	var currentDate = new Date();
	$('.entry').each(function(){
		var dateList = $(this).attr('id').slice(5).split('-');
		
		var entryYY = dateList[0];
		var entryMM = dateList[1] - 1;
		var entryDD = dateList[2];
		
		if ( currentDate.getFullYear() == entryYY && currentDate.getMonth() == entryMM ) {
			if ( Math.abs(currentDate.getDate() - entryDD) <= passageDate ) {
				$('.entryCaption', this).append('<p><img src="/images/common/new_icon.png" width="20" height="9" alt="NEW" /></p>');
			}
		}
	});
});
