
var date = new Date();
var year = date.getFullYear();
var month = date.getMonth() + 1;
var date = date.getDate();
	if (month < 10) {
		month = "0" + month;
	}
	if (date < 10) {
		date = "0" + date;
	}

date = "" + date;
year = "" + year;
month = "" + month;

var strDate = year + month + date;

jQuery(function(){
	jQuery("#str-main span.date").hide();
	jQuery("#str-main span.date").each(function(){
	var datetxt = jQuery(this).text().replace(/^\s+|\s+$|\//g, "");
			if( strDate <= datetxt ){	
				jQuery(this).parent().append(' <span class="icon-new"><img width="29" height="13" alt="NEW" src="/shared/images/common/icon_new.png"></span>');
			}
	});
});


