	var indI = 1;
	images = new Array();
	images[1] = "photos_020/living_room_2.jpg";
	images[2] = "photos_020/living_room_1.jpg";
	images[3] = "photos_020/living_room_3.jpg";
	images[4] = "photos_020/bathroom_1.jpg";
	images[5] = "photos_020/bathroom_2.jpg";
	images[6] = "photos_020/bedroom_1.jpg";
	images[7] = "photos_020/bedroom_2.jpg";
	images[8] = "photos_020/bedroom_3.jpg";
	images[9] = "photos_020/kitchen_1.jpg";
	images[10] = "photos_020/kitchen_2.jpg";
	images[11] = "photos_020/view_1.jpg";
	images[12] = "photos_020/view_2.jpg";

	descript = new Array();
	descript[1] = "Living Room";
	descript[2] = "Living Room";
	descript[3] = "Living Room";
	descript[4] = "Bathroom";
	descript[5] = "Bathroom";
	descript[6] = "Bedroom";
	descript[7] = "Bedroom";
	descript[8] = "Bedroom";
	descript[9] = "Kitchen";
	descript[10] = "Kitchen";
	descript[11] = "View";
	descript[12] = "View";


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 = "    ";
  }
}