
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_foundersday08/founders08_01.jpg"
photos[1]="images_foundersday08/founders08_02.jpg"
photos[2]="images_foundersday08/founders08_03.jpg"
photos[3]="images_foundersday08/founders08_04.jpg"
photos[4]="images_foundersday08/founders08_05.jpg"
photos[5]="images_foundersday08/founders08_06.jpg"
photos[6]="images_foundersday08/founders08_07.jpg"
photos[7]="images_foundersday08/founders08_08.jpg"
photos[8]="images_foundersday08/founders08_09.jpg"
photos[9]="images_foundersday08/founders08_10.jpg"
photos[10]="images_foundersday08/founders08_11.jpg"
photos[11]="images_foundersday08/founders08_12.jpg"
photos[12]="images_foundersday08/founders08_13.jpg"
photos[13]="images_foundersday08/founders08_14.jpg"
photos[14]="images_foundersday08/founders08_15.jpg"
photos[15]="images_foundersday08/founders08_16.jpg"
photos[16]="images_foundersday08/founders08_17.jpg"
photos[17]="images_foundersday08/founders08_18.jpg"
photos[18]="images_foundersday08/founders08_19.jpg"
photos[19]="images_foundersday08/founders08_20.jpg"
photos[20]="images_foundersday08/founders08_21.jpg"

//change coresponding description
text[0]="Let the party begin!"
text[1]="Principal Marnie McKoy opens the festivities."
text[2]="Ms. McKoy speaks to audience."
text[3]="Staff, guests and students listen as Ms. McKoy speaks."
text[4]="Sister Vivien Jennings, O.P., Link's foundress, speaks on Link's history and legacy."
text[5]="Students pay attention to Sister Vivien's message."
text[6]="Guests listen as Sister Vivien continues."
text[7]="More guests"
text[8]="Parents, teacher and students looking on."
text[9]="Carey Hamilton, Link Class of '77 sharing his experiences at Link - as a student and an alumni."
text[10]="Ms. McKoy congratulates science teacher Rosana Chanco on her 20 year tenure at Link."
text[11]="Ms. McKoy thanks the Sisters of St. Dominic, Caldwell represented by (left to right)  Sister Arlene Antczak, Prioress of the Sisters of St. Dominic, Caldwell and Link trustee;  Sister Vivien Jennings, Link's foundress; Sister Alice Uhl, former Link principal;  and Sister Donna Marie O'Brien, Link trustee for their legacy to Link."
text[12]="Link's gift to the Sisters of St. Dominic, Caldwell, (left to right) Sister Alice, Sister Arlene, Sister Vivien and Sister Donna Marie."
text[13]="Belting out the school song 'All Hail, LCS!'"
text[14]="Sister Vivien and Ms. McKoy blowing out forty candles!"
text[15]="More guests"
text[16]="Guests enjoying the cake."
text[17]="Mike Bagley, executive director of Project U.S.E. with Sister Arlene Antzcak."
text[18]="Carey Hamilton, Link Class of '77 and Sister Vivien."
text[19]="Extra birthday cake - enough for all!"
text[20]="Yum, says Tyshon Garrett, 8th grader"

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")
	}

