today  = new Date();
todayEpoch  = today.getTime();
target = new Date("21 June, 2011"); 
targetEpoch = target.getTime();
daysLeft = Math.ceil(((targetEpoch - todayEpoch) / (60*60*24)) / 1000);

if(this.location.host == '192.168.1.55')
{
   var LiveSiteUrl = 'http://192.168.1.55/barrydegraaff.tk/'
}
else
{
      var LiveSiteUrl = 'http://www.barrydegraaff.tk/'
}

if (daysLeft > 1)
{
document.write('<div class="noprint" title="Due date by Barry" style="position: fixed; top: 10px; right: 10px; padding: 5px; background-color : #ffffff; border : 1px solid black; -moz-border-radius: 5px; -webkit-border-radius: 5px;"><img style="vertical-align: middle; width: 32px; height: auto;" src="'+LiveSiteUrl+'intro/baby-ani.gif" alt="Aftellen"> Nog ');
document.write(daysLeft);   
document.write(' dagen.</div>');   
}
else if (daysLeft == 1)
{
document.write('<div class="noprint" title="Due date by Barry" style="position: fixed; top: 10px; right: 10px; padding: 5px; background-color : #ffffff; border : 1px solid black; -moz-border-radius: 5px; -webkit-border-radius: 5px;"><img style="vertical-align: middle; width: 32px; height: auto;" src="'+LiveSiteUrl+'intro/baby-ani.gif" alt="Aftellen"> Nog ');
document.write(daysLeft);   
document.write(' dag!</div>');   
}
else if (daysLeft == 0)
{
document.write('<div class="noprint" title="Due date by Barry" style="position: fixed; top: 10px; right: 10px; padding: 5px; background-color : #ffffff; border : 1px solid black; -moz-border-radius: 5px; -webkit-border-radius: 5px;"><img style="vertical-align: middle; width: 32px; height: auto;" src="'+LiveSiteUrl+'intro/baby-ani.gif" alt="Aftellen"> ');
document.write(' Vandaag is het zover!</div>');   
}
else if (daysLeft < -10)
{
}
else if (daysLeft < 0)
{
  
}

