	var indI = 1;
	images = new Array();
	images[1] = "photos_santo/bedroom_1.jpg";
	images[2] = "photos_santo/bedroom_2.jpg";
	images[3] = "photos_santo/bedroom_2_ensuite.jpg";
	images[4] = "photos_santo/bedroom_3_ensuite.jpg";
	images[5] = "photos_santo/bedroom_3_ensuite_1.jpg";
	images[6] = "photos_santo/garden_to_bedroom_3_ensuite.jpg";
	images[7] = "photos_santo/hall_to_front_door.jpg";
	images[8] = "photos_santo/hall_to_kitchen.jpg";
	images[9] = "photos_santo/house_front.jpg";
	images[10] = "photos_santo/house_front_1.jpg";	
	images[11] = "photos_santo/living_room.jpg";
	images[12] = "photos_santo/mezanine.jpg";
	images[13] = "photos_santo/social_bathroom.jpg";
	images[14] = "photos_santo/social_bathroom_1.jpg";
	images[15] = "photos_santo/stair_case_to_1st_floor.jpg";
	images[16] = "photos_santo/varanda_off_bedroom_2.jpg";

	descript = new Array();
	descript[1] = "No.1 Bedroom";
	descript[2] = "No.2 Bedroom";
	descript[3] = "No.2 Bedroom (Ensuite)";
	descript[4] = "No.3 Bedroom (Ensuite)";
	descript[5] = "No.3 Bedroom (Ensuite)";
	descript[6] = "Garden - Bedroom No.3";
	descript[7] = "Hall to Front Door";
	descript[8] = "Hall to Kitchen";
	descript[9] = "House Front";
	descript[10] = "House Front";
	descript[11] = "Living Room";
	descript[12] = "Mezanine";
	descript[13] = "Social Bathroom";
	descript[14] = "Social Bathroom";
	descript[15] = "Stair Case to 1st Floor";
	descript[16] = "Varanda-Bedroom No.2";

function gallery()
{
	if (indI == 1)
  {
		document.getElementById("desc").value = descript[1];
		document.getElementById("previous").value="       ";
  }
}
function previmg()
{
	if (indI != 1) 
  {
		indI--;
		document.getElementById("img1").src = images[indI];
		document.getElementById("desc").value = descript[indI];
		document.getElementById("next").value = "Next";
  }
	if (indI == 1) 
  {
		document.getElementById("previous").value = "        ";
  }
}

function nextimg()
{
	if (indI != 16) 
  {
		indI++;
		document.getElementById("img1").src = images[indI];
		document.getElementById("desc").value = descript[indI];
		document.getElementById("previous").value = "Previous";
  }
	if (indI == 16)
  {
		document.getElementById("next").value = "    ";
  }
}