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]="girl2b.jpg"
photos[1]="14e.jpg"
photos[2]="15o.jpg"
photos[3]="15e.jpg"
photos[4]="22e.jpg"
photos[5]="18e.jpg"
photos[6]="18p.jpg"
photos[7]="18g.jpg"
photos[8]="55s.jpg"
photos[9]="55f.jpg"

//change coresponding description
text[0]="Announcing our newest family member, Alexandra Mears"
text[1]="Lexy at 1 hour old"
text[2]="Lexy sucking on her 1st pacifer"
text[3]="Lexy sucking on her 1st pacifer"
text[4]="Lexy relaxing after arriving into the world"
text[5]="Lexy being adored by her Mama"
text[6]="Lexy being adored by her Mama"
text[7]="Lexy being adored by her Mama"
text[8]="First day at home.  Lexy and Mommie taking a break."
text[9]="First day at home.  Lexy and Mommie taking a break."


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")
	}

