var photos=new Array()
var text=new Array()
var bigpics=new Array()
var newlink
var which=0
var what=0
var where=0

photos[0]="majesticpg/IMAG0001.JPG"
photos[1]="majesticpg/IMAG0029.JPG"
photos[2]="majesticpg/IMAG0030.JPG"
photos[3]="majesticpg/IMAG0031.JPG"
photos[4]="majesticpg/IMAG0032.JPG"
photos[5]="majesticpg/IMAG0033.JPG"
photos[6]="Spacer.GIF"

//description
text[0]="Red Rose Bridal"
text[1]="Yellow Rose Bridal"
text[2]="Burgundy Rose Bridal"
text[3]="Dusty Rose Bridal"
text[4]="Lavendor Rose Bridal"
text[5]="Pink Rose Bridal"
text[6]="End of Gallery"

bigpics[0]="majesticpg/majred.JPG"
bigpics[1]="majesticpg/majyel.JPG"
bigpics[2]="majesticpg/majburg.JPG"
bigpics[3]="majesticpg/majdust.JPG"
bigpics[4]="majesticpg/majlave.JPG"
bigpics[5]="majesticpg/majpink.JPG"
bigpics[6]="Spacer.GIF"

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];
where--
}
}



function forward(){
if (which<photos.length-1){
which++
document.images.photoslider.src=photos[which];
what++
document.rotater.description.value=text[what];
where++
newlink=bigpics[where];
}
else window.status='End of gallery'
}

function type()
	{
	alert("This textbox will only display default comments")
	}