today  = new Date();
todayEpoch  = today.getTime();

target = new Date("17 May, 2012"); 
targetEpoch = target.getTime();

daysLeft = Math.floor(((targetEpoch - todayEpoch) / (60*60*24)) / 1000);
