		var timer = null;
		var clock = null;
		var dday  = null;
		var dmonth= null;
		var next_pjuktoernooi = new Date("Jun 17 2007 12:00:00");

		function stop(){
			clearTimeout(timer);
		}

		function start(){
			var now = new Date();
			var cdseconds = Math.round((next_pjuktoernooi - now) / 1000);
			var cdminutes = Math.round(cdseconds / 60);
			var cdhours = Math.round(cdminutes / 60);
			var cddays = Math.round(cdhours / 24);
			
			var hours = now.getHours();
			var minutes = now.getMinutes();
			var seconds = now.getSeconds();
			minutes = ((minutes < 10) ? "0" : "") + minutes;
			seconds = ((seconds < 10) ? "0" : "") + seconds;
			getDutchDay();
			getDutchMonth();

			var clock = dday + " " + now.getDate() + " " + dmonth + " " + hours + ":" + minutes + ":" + seconds;
			var clock2;
			if(cddays<0)
				clock2 = "NOG " + (-cddays) + " DAGEN";
			else
				clock2 = "NOG " + cddays + " DAGEN";
			currentTime.innerHTML = clock;
			currentCD.innerHTML = clock2;

			timer = setTimeout("start()",1000);
		}
		function getDutchDay(){
			timenow = new Date();
			
			if(timenow.getDay() == 1) dday = "Maandag";
			else if(timenow.getDay() == 2) dday = "Dinsdag";
			else if(timenow.getDay() == 3) dday = "Woensdag";
			else if(timenow.getDay() == 4) dday = "Donderdag";
			else if(timenow.getDay() == 5) dday = "Vrijdag";
			else if(timenow.getDay() == 6) dday = "Zaterdag";
			else if(timenow.getDay() == 0) dday = "Zondag";
		}

		function getDutchMonth(){
			timenow = new Date();

			if(timenow.getMonth() == 0) dmonth = "Januari";
			else if(timenow.getMonth() == 1) dmonth = "Februari";
			else if(timenow.getMonth() == 2) dmonth = "Maart";
			else if(timenow.getMonth() == 3) dmonth = "April";
			else if(timenow.getMonth() == 4) dmonth = "Mei";
			else if(timenow.getMonth() == 5) dmonth = "Juni";
			else if(timenow.getMonth() == 6) dmonth = "Juli";
			else if(timenow.getMonth() == 7) dmonth = "Augustus";
			else if(timenow.getMonth() == 8) dmonth = "September";
			else if(timenow.getMonth() == 9) dmonth = "Oktober";
			else if(timenow.getMonth() == 10) dmonth = "November";
			else if(timenow.getMonth() == 11) dmonth = "December";
		}
