function loadCountdown()
{
   var now = new Date();
   var then = new Date(2012, 4, 25, 0, 0, 0);
   var daysLeft = Math.ceil((then - now) / (1000*60*60*24));
   document.getElementsByClassName('countdown')[0].innerHTML = daysLeft;
}

