//////////////////////////////////////////////////////
//
//	The purpose of this file is to
//	apply javascript for this specific photo gallery
//
//////////////////////////////////////////////////////


// define image files and give the filenames

img_grounds_1     = new Image(382,315);
img_grounds_1.src = "cmsimages/gallery_resort_01.jpg";
img_grounds_2     = new Image(382,315);
img_grounds_2.src = "cmsimages/gallery_resort_02.jpg";
img_grounds_3     = new Image(382,315);
img_grounds_3.src = "cmsimages/gallery_resort_03.jpg";
img_grounds_4     = new Image(382,315);
img_grounds_4.src = "cmsimages/gallery_resort_04.jpg";
img_grounds_5     = new Image(382,315);
img_grounds_5.src = "cmsimages/gallery_resort_05.jpg";
img_grounds_6     = new Image(382,315);
img_grounds_6.src = "cmsimages/gallery_resort_06.jpg";
img_grounds_7     = new Image(382,315);
img_grounds_7.src = "cmsimages/gallery_resort_07.jpg";
img_grounds_8     = new Image(382,315);
img_grounds_8.src = "cmsimages/gallery_resort_08.jpg";
img_grounds_9     = new Image(382,315);
img_grounds_9.src = "cmsimages/gallery_resort_09.jpg";

// change image

function changeimage(imgx,placex)  { 
    if (document.images) { 
        document.images[placex].src = eval(imgx + ".src");
    }
}

