	var indI = 1;
	images = new Array();
	images[1] = "photos_barra_002/living_room_1.jpg";
	images[2] = "photos_barra_002/living_room_2.jpg";
	images[3] = "photos_barra_002/living_room_3.jpg";
	images[4] = "photos_barra_002/kitchen_1.jpg";
	images[5] = "photos_barra_002/kitchen_2.jpg";
	images[6] = "photos_barra_002/bathroom.jpg";
	images[7] = "photos_barra_002/hall_to_bedrooms.jpg";
	images[8] = "photos_barra_002/1_bedroom_a.jpg";
	images[9] = "photos_barra_002/1_bedroom_b.jpg";
	images[10] = "photos_barra_002/2_bedroom_a.jpg";	
	images[11] = "photos_barra_002/2_bedroom_b.jpg";
	images[12] = "photos_barra_002/2_bedroom_c.jpg";
	images[13] = "photos_barra_002/3_bedroom_a.jpg";
	images[14] = "photos_barra_002/3_bedroom_b.jpg";
	images[15] = "photos_barra_002/view_from_bedroom_3.jpg";	

	descript = new Array();
	descript[1] = "Living Room";
	descript[2] = "Living Room";
	descript[3] = "Living Room";
	descript[4] = "Kitchen";
	descript[5] = "Kitchen";
	descript[6] = "Bathroom";
	descript[7] = "Hall to Bedrooms";
	descript[8] = "No.1 Bedroom";
	descript[9] = "No.1 Bedroom";
	descript[10] = "No.2 Bedroom";
	descript[11] = "No.2 Bedroom";
	descript[12] = "No.2 Bedroom";
	descript[13] = "No.3 Bedroom";
	descript[14] = "No.3 Bedroom";
	descript[15] = "View from No.3 Bedroom";


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 != 15) 
  {
		indI++;
		document.getElementById("img1").src = images[indI];
		document.getElementById("desc").value = descript[indI];
		document.getElementById("previous").value = "Previous";
  }
	if (indI == 15)
  {
		document.getElementById("next").value = "    ";
  }
}