	var indI = 1;
	images = new Array();
	images[1] = "photos_003/living_room_2.jpg";
	images[2] = "photos_003/living_room.jpg";
	images[3] = "photos_003/living_room_1.jpg";
	images[4] = "photos_003/kitchen.jpg";
	images[5] = "photos_003/bedroom.jpg";
	images[6] = "photos_003/bedroom_1.jpg";
	images[7] = "photos_003/bathroom.jpg";
	images[8] = "photos_003/bathroom_1.jpg";
	images[9] = "photos_003/swimming_pool.jpg";
	images[10] = "photos_003/swimming_pool_1.jpg";	
	images[11] = "photos_003/view_from_veranda.jpg";
	images[12] = "photos_003/view_from_veranda_1.jpg";

	descript = new Array();
	descript[1] = "Living Room";
	descript[2] = "Living Room";
	descript[3] = "Living Room";
	descript[4] = "Kitchen";
	descript[5] = "Bedroom";
	descript[6] = "Bedroom";
	descript[7] = "Bathroom";
	descript[8] = "Bathroom";
	descript[9] = "Swimming Pool";
	descript[10] = "Swimming Pool";
	descript[11] = "View from Veranda";
	descript[12] = "View from Veranda";

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 != 12) 
  {
		indI++;
		document.getElementById("img1").src = images[indI];
		document.getElementById("desc").value = descript[indI];
		document.getElementById("previous").value = "Previous";
  }
	if (indI == 12)
  {
		document.getElementById("next").value = "    ";
  }
}