<!--// Countdown if near event
lnow=new Date();

levent2 = "Ranking Slalom";
ldate2 = new Date("June 20,2009 12:00:00");

levent2 = "May Summer Slalom";
ldate2 = new Date("May 17,2009 12:00:00");

if (lnow<ldate) {
	lhours = Math.round((ldate-lnow)/(1000*60*60));
	ldays = Math.round(lhours/24);
	if (lhours>24) {CountMsg = "Only "+ldays+" Days to the "+levent;}
	else {CountMsg="Just "+lhours+" Hours to get to the "+levent;};
	}
else {
	lhours = Math.round((ldate2-lnow)/(1000*60*60));
	ldays = Math.round(lhours/24);
	if (lhours>24) {CountMsg = "Only "+ldays+" Days to the "+levent2;}
	else {CountMsg="Just "+lhours+" Hours to get to the "+levent2;};
	};
-->
