// JavaScript Document

var photos=new Array();
var newsText = new Array();
var which=0;
var maxIndex=5;
var intervalID;

// Start timer to scroll through the images
intervalID = setInterval('forward()',5000);

function backward(){
	if (which>0){
		window.status='';
		which--;
		document.images.photoslider.src=photos[which];
	}
}

function forward(){
	if (which<photos.length-1){
		which++;
		document.images.photoslider.src=photos[which];
	} else {
		which=0;
		document.images.photoslider.src=photos[which];
	}
}