    today  = new Date();
    todayEpoch  = today.getTime();
    target = new Date("7 May, 2011"); 
    targetEpoch = target.getTime();
    daysLeft = Math.floor((((targetEpoch - todayEpoch) / (60*60*24)) / 1000) + 1);

