	var myImage = new Array();
	var image = new Array();
	
	image[0] = 'images/gallery/beach_1.jpg';
	image[1] = 'images/gallery/beach_2.jpg';
	image[2] = 'images/gallery/bedroom.jpg';
	image[3] = 'images/gallery/cruz_bay.jpg';
	image[4] = 'images/gallery/cruz_bay_dusk.jpg';
	image[5] = 'images/gallery/coral_bay.jpg';
	image[6] = 'images/gallery/gazebo_cruz.jpg';
	image[7] = 'images/gallery/jacuzzi.jpg';
	image[8] = 'images/gallery/jacuzzi_2.jpg';
	image[9] = 'images/gallery/kitchen.jpg';
	image[10] = 'images/gallery/living_room.jpg';
	image[11] = 'images/gallery/mahoghany_run_1.jpg';
	image[12] = 'images/gallery/mahoghany_run_2.jpg';
	image[13] = 'images/gallery/master_frenchdoors.jpg';
	image[14] = 'images/gallery/patio_1.jpg';
	image[15] = 'images/gallery/patio_view.jpg';
	image[16] = 'images/gallery/villa_outside.jpg';
	image[17] = 'images/gallery/master_bedroom.jpg';
	image[18] = 'images/gallery/floor_plan_gallery.gif';	
	image[19] = 'images/gallery/trunk_bay.jpg';
	image[20] = 'images/gallery/westin_beach.jpg';
	image[21] = 'images/gallery/westin_pool_ocean.jpg';		
	image[22] = 'images/gallery/westin_pool.jpg';		
	
	
	for (t=0; t < 23; t++) {
		myImage[t] = new Image();
		myImage[t].src = image[t];
	}
	
	function clickImage(index) {
		document.photo.src = myImage[index].src;
	}

