// JavaScript Document

function getDays() {
	d = new Date(new Date("11/01/2008") - new Date());
	s = Math.floor(d.valueOf()/1000);
	return Math.floor(s/86400).toString();
}

function printDays() {
	d = getDays();
	for(i=0; i < d.length; i++)
		document.write("<img src='./images/counter/" + d.charAt(i) + ".gif' />");
	document.write("<img src='./images/counter/days.gif' />");
}


