function doPreload()
	{
    	// you chg all the images in this array to the ones you want to preload
    	var the_images = new Array('/images/RotateES/aardappel.gif','/images/RotateES/olijf.jpg','/images/RotateES/druiven.jpg','/images/RotateES/tomaat.jpg');
    	preloadImages(the_images);
}


    function preloadImages(the_images_array) {
    	for(loop = 0; loop < the_images_array.length; loop++)


        	{
        		var an_image = new Image();
        		an_image.src = the_images_array[loop];
        	}
    }