
var photos=new Array()
var text=new Array()
var which=0
var what=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_strong08/strong_01.jpg"
photos[1]="images_strong08/strong_02.jpg"
photos[2]="images_strong08/strong_03.jpg"
photos[3]="images_strong08/strong_04.jpg"
photos[4]="images_strong08/strong_05.jpg"
photos[5]="images_strong08/strong_06.jpg"
window.onload=new Function("document.rotater.description.value=text[0]")

function backward(){
if (which>0){
window.status=''
which--
document.images.photoslider.src=photos[which];
what--
document.rotater.description.value=text[what];
}
}

function forward(){
if (which<photos.length-1){
which++
document.images.photoslider.src=photos[which]
what++
document.rotater.description.value=text[what];
}
else window.status='End of gallery'
}

function type()
	{
	alert("This textbox will only display default comments")
	}

