var baseUrl = "http://graphics.fansonly.com/schools/gewa/coachhobbs/graphics/";
image=[];
image[0]=["gewa-07-mast-01.jpg"],
image[1]=["gewa-07-mast-04.jpg"],
image[2]=["gewa-07-mast-03.jpg"],
image[3]=["gewa-07-mast-07.jpg"],
image[4]=["gewa-07-mast-02.jpg"],
image[5]=["gewa-07-mast-06.jpg"],
image[6]=["gewa-07-mast-05.jpg"],
image[7]=["gewa-07-mast-08.jpg"],
image[8]=["gewa-07-mast-09.jpg"]
	
var numberOfImages=image.length-1;
var toggleRotate=numberOfImages; 

function imagelink(){
//alert(image[toggleRotate][1]);
location.href="/coachhobbs/index-main.html";
}

function rotateImage(){

	//toggleRotate = Math.floor(Math.random() * (numberOfImages));
	if ( toggleRotate <  numberOfImages ){
	toggleRotate++;
	} else {
	toggleRotate=0;
	}
	document.rotMast.src = baseUrl + image[toggleRotate][0];
}

var ourInterval = setInterval("rotateImage()", 5000);

