//document.write('<a href="http://isithappening.blogg.se/" style="text-decoration:none;"><div id="countDown" style="font-size:8pt;font-family:arial,sans-serif;"></div></a>');
var endDate={year:2008, month:5, day:11, hour:00, min:00, sec:00};
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
var countDownEl = document.getElementById('countDown');
function countdown(endDate){   
  var now=new Date();
  var nowYear=now.getYear();
  if (nowYear < 1000){nowYear+=1900}
  var nowStr=montharray[now.getMonth()] + " " 
	+ now.getDate() + ", "+ nowYear + " " 
	+ now.getHours() + ":" + now.getMinutes() 
	+ ":" + now.getSeconds();
  var endDateStr=montharray[endDate.month] + " " 
	+ endDate.day + ", "+ endDate.year + " " 
	+ endDate.hour + ":" + endDate.min 
	+ ":" + endDate.sec;
dDate=Date.parse(endDateStr)-Date.parse(nowStr);
dDay=Math.floor(dDate/(60*60*1000*24)*1);
dHour=Math.floor((dDate%(60*60*1000*24))/(60*60*1000)*1);
dMin=Math.floor(((dDate%(60*60*1000*24))%(60*60*1000))/(60*1000)*1);
dSec=Math.floor((((dDate%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1);
countDownEl.innerHTML = 'Vad h&auml;nder om ' + dDay + ' dagar, ' + dHour + ' timmar ' + dMin + ' minuter och ' + dSec + ' sekunder?';
setTimeout("countdown(endDate)",1000);
}
// init countdown
//countdown(endDate);

