
function mcCountDown() {
	// 2005-11-01T14:00:00+00:00
	
	var S_seconds  = -100484603;
	var S_days     = Math.floor(S_seconds / 86400);
	var S_hours    = Math.floor(S_seconds / 3600);
	var S_minutes  = Math.floor(S_seconds / 60)
	
	var days    = S_days;
	var hours   = S_hours - (S_days * 24);
	var minutes = S_minutes - (S_hours * 60);
	
	var timeLeft = hours+" hours "+minutes+" minutes";
	
	return(timeLeft);
}function alertBar() {
	var timeLeft = mcCountDown();
	alertBar.html  = "<div id=\"alertBar\">\n";
	alertBar.html += "<a href=\"http://www.iasbet.com/site/freebet/FBBonuses.aspx?kbid=1406\">Only "+timeLeft+" until the Melbourne Cup. Don't miss out and place your bet now. Click Here.</a>\n";
	alertBar.html += "</div>\n";
	document.body.innerHTML = alertBar.html+document.body.innerHTML;
}