curr = 0;

var images = Array(
 "arunachala/images/sri-arunachala.jpg",
 "arunachala/images/column-of-fire.jpg",
 "arunachala/images/frm_west-NW.jpg",
 "arunachala/images/at_sunrise.jpg",
 "arunachala/images/water_view.jpg",
 "arunachala/images/martin/mw-0126.jpg",
 "arunachala/images/martin/mw-0127.jpg",
 "arunachala/images/martin/mw-0180.jpg",
 "arunachala/images/martin/mw-0186.jpg",
 "arunachala/images/martin/mw-0263.jpg",
 "arunachala/images/martin/mw-1136.jpg",
 "arunachala/images/martin/mw-1034.jpg",
 "arunachala/images/martin/mw-1219.jpg",
 "arunachala/images/martin/mw-1205.jpg",
 "arunachala/images/martin/mw-1231.jpg",
 "arunachala/images/martin/mw-1420.jpg",
 "arunachala/images/martin/mw-1424.jpg",
 "arunachala/images/martin/mw-1508.jpg",
 "arunachala/images/martin/mw-1551.jpg",
 "arunachala/images/martin/mw-1963.jpg",
 "arunachala/images/martin/mw-2191.jpg",
 "arunachala/images/martin/mw-3426.jpg",
 "arunachala/images/martin/mw-3473.jpg",
 "arunachala/images/martin/mw-3491.jpg",
 "arunachala/images/martin/mw-3607.jpg",
 "arunachala/images/martin/mw-3692.jpg",
 "arunachala/images/martin/mw-3701.jpg");

var labels = Array(
 "Sri&nbsp;Arunachala&nbsp;-&nbsp;Holyhill&nbsp;of&nbsp;the&nbsp;Beacon&nbsp;Light",
 "Sri Arunachala - Deepam",
 "Sri Arunachala from Adi Annamalai",
 "From the inner path after dawn",
 "Sri Arunachala - water view",
 "from the east, #1",
 "from the east, #2",
 "just west of Sri Ramanasramam",
 "from the west, inner path",
 "from the north side of the western spur",
 "reflected in a pond",
 "beacon light",
 "north side, inner path, early morning",
 "north side, inner path, mid morning",
 "in front of the new hall",
 "looking at the north face",
 "Siva &mdash; Parvati",
 "from within the Arunachaleshwarar Temple",
 "Inner path after rounding the western spur",
 "The north face, from afar",
 "Sri Arunachala Vibhuti",
 "looking at the western spur",
 "Oh, Sonagiri",
 "Arunachala wrapped in Morning Mists",
 "Sunrise on the far side",
 "Inner Pradakshina, from the west",
 "Inner Pradakshina, north side");

function imageSet() {
	document.getElementById("img.arunachala").src = images[curr];
	document.getElementById("lbl.arunachala").src = labels[curr];
	}
function imageNext(move) {
 if (move == 1 ) {
    curr++;
    if (curr == images.length) {
       curr = 0;
       }
    }
 else {
    curr -= 1;
    if (curr < 0) {
       curr = images.length -1;
       }
    }
 document.getElementById("img.arunachala").src = images[curr];
 document.getElementById("lbl.arunachala").innerHTML = labels[curr];
 }
