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. make sure they all the same size*/

photos[0]="images/inv1.jpg"
photos[1]="images/inv2.jpg"
photos[2]="images/inv3.jpg"
photos[3]="images/inv4.jpg"
photos[4]="images/inv5.jpg"
photos[5]="images/inv6.jpg"
photos[6]="images/inv7.jpg"
photos[7]="images/inv8.jpg"
photos[8]="images/inv9.jpg"
photos[9]="images/inv10.jpg"
photos[10]="images/inv12.jpg"
photos[11]="images/inv13.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 window.status='End of gallery'
	}
