
<!--

// Copyright 2001 by www.CodeBelly.com
// Please do *not* remove this notice.

var backImage = new Array(); // don't change this

// Enter the image filenames you wish to use.
// Follow the pattern to use more images.  The
// number in the brackets [] is the number you
// will use in the function call to pick each
// image.

// Note how backImage[3] = "" -- which would
// set the page to *no* background image.

backImage[0] = "http://www.domstadboot.nl/images/deboot1.jpg";
backImage[1] = "http://www.domstadboot.nl/images/Sloepbar.jpg";
backImage[2] = "http://www.domstadboot.nl/images/deboot2.jpg";
backImage[3] = "http://www.domstadboot.nl/images/singel.jpg";
backImage[4] = "http://www.domstadboot.nl/images/Sloepwc.jpg";
backImage[5] = "http://www.domstadboot.nl/images/Bootachterkant.jpg";
backImage[6] = "http://www.domstadboot.nl/images/schippers.jpg";
backImage[7] = "http://www.domstadboot.nl/images/qday.jpg";

// Do not edit below this line.
//-----------------------------

function changeBGImage(whichImage){
if (document.body){
document.getElementById("bigpic").style.backgroundImage = "url(" + backImage[whichImage] + ")";
}
}


