﻿
$(function(){

	$('table tbody tr').each(function(){
		var pass = 7;

		var currentDate = new Date();

		var strTime = $(this).children('td:first-child').text();

		strTime = strTime.replace(/\//, '');
		strTime = strTime.replace(/\//, '');

		var datetime = new Date();

		datetime.setTime(datetime.getTime()-(pass*(24*60*60*1000)));

		var year = datetime.getFullYear();

		var month = datetime.getMonth() + 1;

		if(month <10) {

			month = '0'+month;

		}

		var day = datetime.getDate();

		if(day <10) {

			day = '0'+day;

		}

		var nexttime = year+''+month+''+day;

	        if(parseInt(strTime) >= parseInt(nexttime)){
			$(this).children('td:first-child').addClass('new_icon');
	        }

	});

});

