function rotator() {
splash = ["http://www.woei-online.nl/splashimagesPosters/2009-woei-3-084-CMYK.jpg", "http://www.woei-online.nl/splashimagesPosters/2009-woei-095-CMYK.jpg", "http://www.woei-online.nl/splashimagesPosters/2009-woei2-102-CMYK.jpg"];

start=0;
interval = setInterval('flip()',1500);

}

function flip() {
	document.getElementById("splash").src=splash[start];
	start++;
	if(start>2) { start=0; }
}