/*  Photo Gallery */
var photos=new Array()
var which=0

/*Change the below variables to reference your own images. You may have as many images in the slider as you wish*/
photos[0]="images/phototour_1.jpg"
photos[1]="images/phototour_2.jpg"
photos[2]="images/phototour_3.jpg"
photos[3]="images/phototour_6.jpg"
photos[4]="images/phototour_7.jpg"
photos[5]="images/phototour_8.jpg"
photos[6]="images/phototour_10.jpg"

function backward(){
	if (which>0){
		window.status=''
		which--
		document.images.photoslider.src=photos[which]
	}
}

function forward(){
	if (which<photos.length-1){
		which++
		document.images.photoslider.src=photos[which]
		}
	else document.images.photoslider.src=photos[0]
}