function countdown() {
	makemyday();
	window.setTimeout('countdown()',5000);
}
function makemyday() {
	now = new Date();
	document.getElementById('cam1').src = '/gewinnspiel/chicken/images/cam1/wmcam01.jpg?' + now.getTime();
	document.getElementById('cam2').src = '/gewinnspiel/chicken/images/cam2/wmcam01.jpg?' + now.getTime();
}

