	var indI = 1;
	images = new Array();
	images[1] = "photos_rio_vend/kitchen_1.jpg";
	images[2] = "photos_rio_vend/kitchen.jpg";
	images[3] = "photos_rio_vend/living_room_kitchen.jpg";
	images[4] = "photos_rio_vend/living_room.jpg";
	images[5] = "photos_rio_vend/hall_to_bedrooms.jpg";	
	images[6] = "photos_rio_vend/bedroom_1.jpg";
	images[7] = "photos_rio_vend/bedroom_1a.jpg";
	images[8] = "photos_rio_vend/bedroom_2.jpg";
	images[9] = "photos_rio_vend/bathroom_1.jpg";
	images[10] = "photos_rio_vend/bathroom_1a.jpg";
	images[11] = "photos_rio_vend/bathroom_2.jpg";
	images[12] = "photos_rio_vend/veranda_view.jpg";
	images[13] = "photos_rio_vend/veranda_view_1.jpg";
	images[14] = "photos_rio_vend/wash_area.jpg";

	descript = new Array();
	descript[1] = "Kitchen";
	descript[2] = "Kitchen";
	descript[3] = "Living Room Kitchen";
	descript[4] = "Living Room";
	descript[5] = "Hall To Bedrooms";
	descript[6] = "No.1 Bedroom";
	descript[7] = "No.1 Bedroom";
	descript[8] = "No.2 Bedroom";
	descript[9] = "No.1 Bathroom";
	descript[10] = "No.1 Bathroom";
	descript[11] = "No.2 Bathroom";
	descript[12] = "Veranda View";
	descript[13] = "Veranda View";
	descript[14] = "Wash Area";


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 != 14) 
  {
		indI++;
		document.getElementById("img1").src = images[indI];
		document.getElementById("desc").value = descript[indI];
		document.getElementById("previous").value = "Previous";
  }
	if (indI == 14)
  {
		document.getElementById("next").value = "    ";
  }
}