<!--//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("int/01.jpg","int/02.jpg","int/03.jpg","int/05.jpg","int/06.jpg","int/07.jpg","int/08.jpg","int/09.jpg","int/10.jpg","int/11.jpg","int/12.jpg","int/13.jpg","int/14.jpg","int/15.jpg","int/16.jpg","int/19.jpg")
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","Floorplan")
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 < 15) {
        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
		}