var baseUrl = "http://grfx.cstv.com/schools/alab/graphics/";
image=[];
//image[0]=["2010-gene-stallings-tournament.jpg", "http://www.rolltide.com/photos/schools/alab/genrel/auto_pdf/2010-stallings-golf-tournament.pdf", "_blank"];
//image[1]=["alab-08-apluscstv.jpg","http://rolltide.cstv.com/aplus/","_blank"];
//image[1]=["alab-goldenflake-btn-1.gif", "http://www.rolltide.com/sponsorship/golden-flake-coach.html", "_blank"];
image[0]=["2010-cm-softball-promo.jpg", "http://www.seniorclassaward.com/vote/softball_2010/", "_blank"];
//image[1]=["2010-comm-ball-ad-261.jpg","http://store.cstv.com/marketplace/store_contents.cfm?store_id=448&dept_id=-164&product_id=163550&partner_id=16808","_blank"];
image[1]=["bryantDenny-index-promo-261.gif","http://www.rolltide.com/bryant-denny","_blank"];
//image[3]=["crimson-caravan-ad.jpg", "http://www.rolltide.com/promotions/2010-crimson-caravan.html", "_blank"]
//http://ev10.evenue.net/cgi-bin/ncommerce3/SEGetGroupList?groupCode=GP&linkID=ubama&shopperContext=&caller=&appCode=
var numberOfimages=image.length-1;
var toggleRotate=numberOfimages; 

function imagelink(){
	var windowTarget = image[toggleRotate][2];
	//alert(windowTarget);
	if (windowTarget == "_blank"){
		window.open(image[toggleRotate][1]);
		//alert("store");
	} else {
		window.location = image[toggleRotate][1];
		//alert("other");
	}
}

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

	var ourInterval = setInterval("rotateimage()", 6000);
	
// html to add
// <a href="#" onclick="imagelink(); void(0);"><img src="http://grfx.cstv.com/schools/alab/graphics/spacer.gif" width="261" height="90" id="rtimage" name="rtimage" alt="Rotating image"></a>

