// This script came from Web-Development.Com JavaScript Site
// Located at http://www.web-development.com/ 
// But Woodz dled it and modded it to his birthday! hehe :-)

today = new Date();

BigDay = new Date("October 13, 2002")
msPerDay = 24 * 60 * 60 * 1000 ;
timeLeft = (BigDay.getTime() - today.getTime());
e_daysLeft = timeLeft / msPerDay;
daysLeft = Math.floor(e_daysLeft);
e_hrsLeft = (e_daysLeft - daysLeft)*24;
hrsLeft = Math.floor(e_hrsLeft);
minsLeft = Math.floor((e_hrsLeft - hrsLeft)*60);
document.write("<font class='text07pt' color='#000000' style=\"background-color: whitesmoke\;\"> " + daysLeft + " days, " + hrsLeft + " hours, " + minsLeft + " minutes. Roughly. Don't quote me on that ;)</font>");
