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]="017.jpg"
photos[1]="019.jpg"
photos[2]="020.jpg"
photos[3]="021.jpg"
photos[4]="022.jpg"
photos[5]="023.jpg"
photos[6]="025.jpg"
photos[7]="026.jpg"
photos[8]="027.jpg"

//change coresponding description
text[0]="                           Lunch at JD Beans with Cristina"
text[1]="               Lunch at JD Beans, and boy were they HUNGRY!"
text[2]="               Brittini and Branden at the Orange Grove Stand"
text[3]="                                 Brittini, Evelina, and Cristina"
text[4]="         How about this orange?  I dunno, we better taste it first."
text[5]="   Brittini n' tangerines, Branden n' oranges - trunk full of citrus!"
text[6]="           Charles nabs the Orange Picking Gang red-handed."
text[7]="          Evidence eaten up, the Gang is free to go.  *burp*"
text[8]="                                        Evelina and Charles"


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")
	}

