function setcountdown(theyear,themonth,theday){
	yr=theyear;
	mo=themonth;
	da=theday;
}

/************* CONFIGURE THE COUNTDOWN SCRIPT HERE **************/
/* STEP 1: Configure the countdown-to date, in the format year, month, day: */
setcountdown(2009,05,25);
houroffset=-9;
minoffset=-00;
secsoffset=0;

/* STEP 2: Change the two text below to reflect the occasion, and message to display on that occasion, respectively */
var occasion="";
var message_on_occasion="Domingo 24 de Mayo de 2009";

/* STEP 3: Configure the below variables to set the width, height, background color, and text style of the countdown area */
var countdownwidth='200px';
var countdownheight='50px';
/* whether or not to use the background color -- 1=yes, 0=no */
var usebgcolor=0;
/* whether or not to use the background image -- 1=yes, 0=no */
var usebgimage=0;
/* countdownbgcolor can be colour word or hex value */
var countdownbgcolor='';

/* format the countdown table */
var opentable='<table cellpadding="0" cellspacing="0" border="0" width="'+countdownwidth+'"';
if(usebgcolor==1) opentable += ' style="background-color: '+countdownbgcolor+';"';
if(usebgimage==1) opentable += ' class="countdownbgimage"';
opentable += '>';
var closetable='</table>';

/* format header row */
var headerrow = '<tr><td class="countdownheader">Días</td><td class="countdownheader">Horas</td><td class="countdownheader">Minutos</td><td class="countdownheader">Segundos</td></tr><tr>';

/* format the countdown row */
var openrow = '<tr>';
var closerow = '</tr>';

/* format the countdown cells */
var opencell='<td class="countdownfont">';
var closecell='</td>';

/* format countdown font (optional)*/
var opencell='<td class="countdownfont">';
var closecell='</td>';

/* format the footer row */
var openfooter='<tr><td colspan="4" class="countdownfooter">';
var closefooter='</td></tr>';

/*********** DO NOT EDIT PASS THIS LINE **************/

var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
var crosscount='';

function start_countdown(){
	if (document.layers) document.countdownnsmain.visibility="show";
	else if (document.all||document.getElementById)
		crosscount=document.getElementById&&!document.all?document.getElementById("countdownie") : countdownie;
	countdown();
}

if (document.all||document.getElementById)
	document.write('<span id="countdownie" style="width:'+countdownwidth+'; background-color:'+countdownbgcolor+'"></span>');

//window.onload=start_countdown;


function countdown(){
	var today=new Date();
	var todayy=today.getYear();
	if (todayy < 1000) todayy+=1900;
	var todaym=today.getMonth();
	var todayd=today.getDate();
	var todayh=today.getHours() + (houroffset);
	if(todayh < 0) todayh = todayh + 24; /**/	
	var todaymin=today.getMinutes() + (minoffset);
	if(todaymin < 0) todaymin = todaymin + 60; /**/
	var todaysec=today.getSeconds() + (secsoffset);
	if(todaysec < 0) todaysec = todaysec + 60; /**/
	var todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec;
	futurestring=montharray[mo-1]+" "+da+", "+yr;
	dd=Date.parse(futurestring)-Date.parse(todaystring);
	dday=Math.floor(dd/(60*60*1000*24)*1);
	dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1);
	dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1);
	dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1);
	//if on day of occasion
	if(dday<=0&&dhour<=0&&dmin<=0&&dsec<=1&&todayd==da){
		if (document.layers){
			document.countdownnsmain.document.countdownnssub.document.write(opentags+message_on_occasion+closetags);
			document.countdownnsmain.document.countdownnssub.document.close();
		}
		else if (document.all||document.getElementById)
			crosscount.innerHTML=opentags+message_on_occasion+closetags;
		return;
	}
	//if passed day of occasion
	else if (dday<=-1){
		if (document.layers){
			document.countdownnsmain.document.countdownnssub.document.write(opentags+"La Maratón del Eje Cafetero ya pasó! "+closetags);
			document.countdownnsmain.document.countdownnssub.document.close();
		}
		else if (document.all||document.getElementById)
			crosscount.innerHTML=opentags+"La Maratón del Eje Cafetero ya pasó! "+closetags;
		return;
	}
	//else, if not yet
	else{
		/*if (document.layers){
			document.countdownnsmain.document.countdownnssub.document.write(opentags+dday+ " days, "+dhour+" hours, "+dmin+" minutes, and "+dsec+" seconds left until "+occasion+closetags);
			document.countdownnsmain.document.countdownnssub.document.close();
		}
		else if (document.all||document.getElementById){
			crosscount.innerHTML=opentags+dday+ " days, "+dhour+" hours, "+dmin+" minutes, and "+dsec+" seconds left until "+occasion+closetags;
		}
	}*/
		
		if (document.all||document.getElementById){
			crosscount.innerHTML=opentable+headerrow+openrow+opencell+dday+""+closecell+opencell+dhour+""+closecell+opencell+dmin+""+closecell+opencell+dsec+closecell+closerow+openfooter+""+occasion+closefooter+closetable;
		}
		else if (document.layers){
			document.countdownnsmain.document.countdownnssub.document.write(opentable+headerrow+openrow+opencell+dday+"."+closecell+opencell+dhour+"."+closecell+opencell+dmin+"."+closecell+opencell+dsec+closecell+closerow+openfooter+""+occasion+closefooter+closetable);
			document.countdownnsmain.document.countdownnssub.document.close();
		}
		setTimeout("countdown()",1000);
	}
}