/* script to automatically replace the ads in the 'foerderer'-box */
window.setInterval(function() {
	var img = document.getElementById('ad-image');
	var oldAd = adFiles.shift();
	adFiles.push(oldAd);
	
	img.src = img.src.substr(0,img.src.lastIndexOf('/')+1) + adFiles[0];
	img.parentNode.href = "http://"+adFiles[0].substr(0,adFiles[0].length-4);	
}, 7000);