// JavaScript Document

var photos=new Array()
var which=0
var total=19


/*Change the below variables to reference your own images. You may have as many images in the slider as you wish*/
photos[0]="images/gallery/tile_00.jpg"
photos[1]="images/gallery/tile_01.jpg"
photos[2]="images/gallery/tile_02.jpg"
photos[3]="images/gallery/tile_03.jpg"
photos[4]="images/gallery/tile_04.jpg"
photos[5]="images/gallery/tile_05.jpg"
photos[6]="images/gallery/tile_06.jpg"
photos[7]="images/gallery/tile_07.jpg"
photos[8]="images/gallery/tile_08.jpg"
photos[9]="images/gallery/tile_09.jpg"
photos[10]="images/gallery/tile_10.jpg"
photos[11]="images/gallery/tile_11.jpg"
photos[12]="images/gallery/tile_12.jpg"
photos[13]="images/gallery/tile_13.jpg"
photos[14]="images/gallery/tile_14.jpg"
photos[15]="images/gallery/tile_15.jpg"
photos[16]="images/gallery/tile_16.jpg"
photos[17]="images/gallery/tile_17.jpg"
photos[18]="images/gallery/tile_18.jpg"



function backward(){
if (which>0){
window.status=''
which--
document.images.lgImage.src=photos[which]
/*var userInput = [which+1];
	document.getElementById('imageNumber').innerHTML = userInput+" of "+total;*/

	
}
}

function forward(){
if (which<photos.length-1){
which++
document.images.lgImage.src=photos[which]
/*var userInput = [which+1];
	document.getElementById('imageNumber').innerHTML = userInput+" of "+total;*/
	
}

/*
function changeNumber(){
	//var userInput = [which+1];
	//document.getElementById('imageNumber').innerHTML = userInput+" of "+total;
	alert("shit");
}

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}
*/

}