// 
document.write("<font size=-1><marquee behavior=alternate >");

// put dates, event names, and links here



 
countdown("March 27, 2010", "LBJ 100", "http://www.velovalero.com/forums/post/5727.aspx"); 
countdown("April 18, 2010", "Fiesta Wildflower Ride", "http://www.velovalero.com/forums/post/5615.aspx");
countdown("May 22, 2010", "San Antonio Tour de Cure", "http://www.velovalero.com/forums/post/4165.aspx");

//
document.write("</marquee></font>");
document.write("<br>");

// function to compute the coundown
function countdown(d,s,l)
{
var now = new Date();
var then = new Date(d);
var gap = then.getTime() - now.getTime();
gap = Math.floor((gap / (1000 * 60 * 60 * 24))+1);
document.write("<strong>" + gap + "</strong> days until the <strong><a href=" + l + ">" + s + "</a></strong>&nbsp;&nbsp;");
}

