	var indI = 1;
	images = new Array();
	images[1] = "photos_santo_002/breakfast_area_2.jpg";
	images[2] = "photos_santo_002/breakfast_area_1.jpg";
	images[3] = "photos_santo_002/facade.jpg";
	images[4] = "photos_santo_002/standard_room_1.jpg";
	images[5] = "photos_santo_002/standard_room_2.jpg";
	images[6] = "photos_santo_002/superior_room_1a.jpg";
	images[7] = "photos_santo_002/superior_room_2a.jpg";
	images[8] = "photos_santo_002/superior_room_3a.jpg";
	images[9] = "photos_santo_002/superior_room_1b.jpg";
	images[10] = "photos_santo_002/superior_room_2b.jpg";	

	descript = new Array();
	descript[1] = "Breakfast Area";
	descript[2] = "Breakfast Area";
	descript[3] = "Facade";
	descript[4] = "Standard Room";
	descript[5] = "Standard Room";
	descript[6] = "Superior Room A";
	descript[7] = "Superior Room A";
	descript[8] = "Superior Room A";
	descript[9] = "Superior Room B";
	descript[10] = "Superior Room B";

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 != 10) 
  {
		indI++;
		document.getElementById("img1").src = images[indI];
		document.getElementById("desc").value = descript[indI];
		document.getElementById("previous").value = "Previous";
  }
	if (indI == 10)
  {
		document.getElementById("next").value = "    ";
  }
}