<!--
//Slide Show script (this notice must stay intact)
//For this and more scripts
//visit java-scripts.net or http://wsabstract.com

var myPix = new Array("ext/3.jpg","ext/4.jpg","ext/5.jpg","ext/6.jpg","ext/7.jpg","ext/8.jpg","ext/9.jpg","ext/10.jpg","ext/11.jpg","ext/12.jpg","ext/13.jpg","ext/14.jpg","ext/15.jpg","ext/16.jpg","ext/17.jpg","ext/18.jpg","ext/19.jpg","ext/20.jpg","ext/21.jpg","ext/22.jpg","ext/23.jpg","ext/24.jpg","ext/1.jpg","ext/2.gif")
var myDesc = new Array("Image 1","Image 2","Image 3","Image 4","Image 5","Image 6","Image 7","Image 8","Image 9","Image 10","Image 11","Image 12","Image 13","Image 14","Image 15","Image 16","Image 17","Image 18","Image 19","Image 20","Image 21","Image 22","Map 1","Map 2")
var thisPic = 0

function doPrevious() {
    if (document.images && thisPic > 0) {
        thisPic--
        document.myPicture.src=myPix[thisPic]
		document.getElementById('desc').childNodes[0].nodeValue = myDesc[thisPic]
    }
}

function doNext() {
    if (document.images && thisPic < 23) {
        thisPic++
        document.myPicture.src=myPix[thisPic]
		document.getElementById('desc').childNodes[0].nodeValue = myDesc[thisPic]
    }
}

function clickPic(num) {
		document.myPicture.src=myPix[num]
		document.getElementById('desc').childNodes[0].nodeValue = myDesc[num]
		thisPic = num
		}
// -->