var later = new Date('Jul 25, 2011 00:00:00');
var timeOut;
			
function countDown() {
	now = new Date();
	days = (later - now) / 1000 / 60 / 60 / 24;
	daysRound = Math.floor(days);
	hours = (later - now) / 1000 / 60 / 60 - (24 * daysRound);
	hoursRound = Math.floor(hours);
	minutes = (later - now) / 1000 /60 - (24 * 60 * daysRound) - (60 * hoursRound);
	minutesRound = Math.floor(minutes);
	seconds = (later - now) / 1000 - (24 * 60 * 60 * daysRound) - (60 * 60 * hoursRound) - (60 * minutesRound);
	secondsRound = Math.round(seconds);
				
	if( minutesRound < 10 ) { minutesRound = "0" + minutesRound; }
	if( secondsRound < 10 ) { secondsRound = "0" + secondsRound; }
				
	td = document.getElementById('countdown');
	if( td ) {
		td.innerHTML = "<div style='font-weight:bold;font-size:16px;'>" + daysRound + " DAYS "+ "</div>";
	}
	timeOut = setTimeout( "countDown()", 1000 );
}
			
timeOut = setTimeout( "countDown()", 1000 );