var now = new Date();
var event = new Date("Mar 01 2010 00:00:00"); ///// <- this is it peepz
var seconds = (event - now) / 1000;
var minutes = seconds / 60;
var hours = minutes / 60;
var days = hours / 24;
ID=window.setTimeout("update();", 50);

function update() 
{
	now = new Date();
	millisec = (event - now);
	seconds = (event - now) / 1000;
	seconds = Math.round(seconds);
	minutes = seconds / 60;
	minutes = Math.round(minutes);
	hours = minutes / 60;
	hours = Math.round(hours);
	days = hours / 24;
	days = Math.round(days);
	document.form.seconds.value = millisec;
	ID=window.setTimeout("update();",50);
}


// Hey YOU! what're you doing here?
// Yeah yeah yeah... I will launch my new portfolio website the first of March next year... happy now?

// if you say it, it's not there anymore... what is it?