<!--
function preload() {
	imgArray = new Array('home', 'kwaliteit','specialisme', 'waarom', 'contact', 'fotos', 'pannendaken', 'plattedaken', 'dakgoten', 'overig');
	tmpImage = new Array();

	for (i=0; i<imgArray.length; i++) {
		tmpImage[i] = new Image();
		tmpImage[i].src = 'images/buttons/' + imgArray[i] + '_over.png';
	}
}

function moveOver(imageName) {
	document.images[imageName].src= 'images/buttons/' + imageName + '_over.png';
	}

function moveOut(imageName) {
	document.images[imageName].src= 'images/buttons/' + imageName + '.png';
	}
	
function moveOutSub(imageName) {
	document.images[imageName].src= 'images/buttons/' + imageName + '_tab.png';
	}
-->
