var backImage = new Array();
// Note how backImage[3] = "" -- which would
// set the page to *no* background image.

backImage[0] = "Boutique_files/123.jpg";
backImage[1] = "Boutique_files/Cinema2.jpg";
backImage[2] = "Boutique_files/alaskaone.jpg";
backImage[3] = "";

// Do not edit below this line.
//-----------------------------

function changeBGImage(whichImage){
if (document.body){
document.body.style.backgroundImage = "url("+backImage[whichImage]+")";
}
}

//-->