<!--

// Creates and fills the lodge photo gallery images array.
function fillLodgeArray() {
	// Create the gallery pics array.
	if (document.g_thumbsInfo == null) {
		document.g_thumbsInfo = new Array();
	}
	var pics = document.g_thumbsInfo;
	
	
	
	// Definitions for images in gallery.
	pics[0] = new PhotoImage();
	pics[0].thumbSrc = "images/cvrm1_t.jpg";
	pics[0].mainSrc = "images/cvroom1.jpg";
	pics[0].title = "Cypress View Wing - Occupied Room (1)";
	pics[0].description = "";
	
	pics[1] = new PhotoImage();
	pics[1].thumbSrc = "images/cvrm2_t.jpg";
	pics[1].mainSrc = "images/cvroom2.jpg";
	pics[1].title = "Cypress View Wing - Occupied Room (2)";
	pics[1].description = "";

	pics[2] = new PhotoImage();
	pics[2].thumbSrc = "images/cvbath_t.jpg";
	pics[2].mainSrc = "images/cvbath.jpg";
	pics[2].title = "Cypress View Wing - Bathroom";
	pics[2].description = "";

	pics[3] = new PhotoImage();
	pics[3].thumbSrc = "images/cvarea_t.jpg";
	pics[3].mainSrc = "images/cvarea.jpg";
	pics[3].title = "Cypress View Wing - Common Area";
	pics[3].description = "";

	pics[4] = new PhotoImage();
	pics[4].thumbSrc = "images/cvfrn1_t.jpg";
	pics[4].mainSrc = "images/cvfurn1.jpg";
	pics[4].title = "Cypress View Wing - Original Furniture";
	pics[4].description = "";

	pics[5] = new PhotoImage();
	pics[5].thumbSrc = "images/cvfrn2_t.jpg";
	pics[5].mainSrc = "images/cvfurn2.jpg";
	pics[5].title = "Cypress View Wing - New Furniture (1)";
	pics[5].description = "";

	pics[6] = new PhotoImage();
	pics[6].thumbSrc = "images/cvfrn3_t.jpg";
	pics[6].mainSrc = "images/cvfurn3.jpg";
	pics[6].title = "Cypress View Wing - New Furniture (2)";
	pics[6].description = "";

	pics[7] = new PhotoImage();
	pics[7].thumbSrc = "images/cventr_t.jpg";
	pics[7].mainSrc = "images/cventer.jpg";
	pics[7].title = "Cypress View Wing - Room Entrance";
	pics[7].description = "";

	pics[8] = new PhotoImage();
	pics[8].thumbSrc = "images/twroom_t.jpg";
	pics[8].mainSrc = "images/twroom.jpg";
	pics[8].title = "Teeoda Wing - Occupied Room";
	pics[8].description = "";

	pics[9] = new PhotoImage();
	pics[9].thumbSrc = "images/twemp1_t.jpg";
	pics[9].mainSrc = "images/twempty1.jpg";
	pics[9].title = "Teeoda Wing - Empty Room (1)";
	pics[9].description = "";

	pics[10] = new PhotoImage();
	pics[10].thumbSrc = "images/twemp2_t.jpg";
	pics[10].mainSrc = "images/twempty2.jpg";
	pics[10].title = "Teeoda Wing - Empty Room (2)";
	pics[10].description = "";

	pics[11] = new PhotoImage();
	pics[11].thumbSrc = "images/twbth1_t.jpg";
	pics[11].mainSrc = "images/twbath1.jpg";
	pics[11].title = "Teeoda Wing - Bathroom";
	pics[11].description = "";

	pics[12] = new PhotoImage();
	pics[12].thumbSrc = "images/twbth2_t.jpg";
	pics[12].mainSrc = "images/twbath2.jpg";
	pics[12].title = "Teeoda Wing - Tub";
	pics[12].description = "";

	pics[13] = new PhotoImage();
	pics[13].thumbSrc = "images/twarea_t.jpg";
	pics[13].mainSrc = "images/twarea.jpg";
	pics[13].title = "Teeoda Wing - Common Area";
	pics[13].description = "";

	pics[14] = new PhotoImage();
	pics[14].thumbSrc = "images/twhall_t.jpg";
	pics[14].mainSrc = "images/twhall.jpg";
	pics[14].title = "Teeoda Wing - Hallway";
	pics[14].description = "";

	pics[15] = new PhotoImage();
	pics[15].thumbSrc = "images/wrrm1_t.jpg";
	pics[15].mainSrc = "images/wrroom1.jpg";
	pics[15].title = "Wild Rose Wing - Occupied Room (1)";
	pics[15].description = "";

	pics[16] = new PhotoImage();
	pics[16].thumbSrc = "images/wrrm2_t.jpg";
	pics[16].mainSrc = "images/wrroom2.jpg";
	pics[16].title = "Wild Rose Wing - Occupied Room (2)";
	pics[16].description = "";

	pics[17] = new PhotoImage();
	pics[17].thumbSrc = "images/wrrm3_t.jpg";
	pics[17].mainSrc = "images/wrroom3.jpg";
	pics[17].title = "Wild Rose Wing - Occupied Room (3)";
	pics[17].description = "";

	pics[18] = new PhotoImage();
	pics[18].thumbSrc = "images/wremp1_t.jpg";
	pics[18].mainSrc = "images/wrempty1.jpg";
	pics[18].title = "Wild Rose Wing - Empty Room (1)";
	pics[18].description = "";

	pics[19] = new PhotoImage();
	pics[19].thumbSrc = "images/wremp2_t.jpg";
	pics[19].mainSrc = "images/wrempty2.jpg";
	pics[19].title = "Wild Rose Wing - Empty Room (2)";
	pics[19].description = "";

	pics[20] = new PhotoImage();
	pics[20].thumbSrc = "images/wrbath_t.jpg";
	pics[20].mainSrc = "images/wrbath.jpg";
	pics[20].title = "Wild Rose Wing - Bathroom";
	pics[20].description = "";

	pics[21] = new PhotoImage();
	pics[21].thumbSrc = "images/wrarea_t.jpg";
	pics[21].mainSrc = "images/wrarea.jpg";
	pics[21].title = "Wild Rose Wing - Common Area";
	pics[21].description = "";

	
	// Return the array.
	return pics;
}

-->

