	var indI = 1;
	images = new Array();
	images[1] = "photos_012/living_room_1.jpg";
	images[2] = "photos_012/living_room_2.jpg";
	images[3] = "photos_012/view_from_veranda_1.jpg";
	images[4] = "photos_012/view_from_veranda_2.jpg";
	images[5] = "photos_012/kitchen_1.jpg";
	images[6] = "photos_012/bathroom_1.jpg";
	images[7] = "photos_012/bedroom_1.jpg";
	images[8] = "photos_012/bedroom_2.jpg";
	images[9] = "photos_012/bedroom_window.jpg";

	descript = new Array();
	descript[1] = "Living Room";
	descript[2] = "Living Room";
	descript[3] = "View from Veranda";
	descript[4] = "View from Veranda";
	descript[5] = "Kitchen";
	descript[6] = "Bathroom";
	descript[7] = "Bedroom";
	descript[8] = "Bedroom";
	descript[9] = "Bedroom Window";


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 != 9) 
  {
		indI++;
		document.getElementById("img1").src = images[indI];
		document.getElementById("desc").value = descript[indI];
		document.getElementById("previous").value = "Previous";
  }
	if (indI == 9)
  {
		document.getElementById("next").value = "    ";
  }
}