// How often in seconds to rotate
var howOften = 4;

// Start the counter at 0
var current = 0;

// Detect netscape 6
var ns6 = document.getElementById&&!document.all; 

// place your images, text, etc in the array elements here
var items = new Array();
// items[0]="<a href='http://www.ntxsoccer.org' target='_blank'><img height='61' width='115' border='0' src='images/ntssa_block_logo.jpg' /></a>"
// items[1]="<a href='http://www.usyouthsoccer.org' target='_blank'><img height='115' width='115' border='0' src='images/usysa_logo.jpg' /></a>"
items[0]="<a href='http://www.dickssportinggoods.com/home/index.jsp' target='_blank'><img src='sponsors/images/dsg_logo.gif' width='150' height='158' alt='Dick's Sporting Goods' border='0'></a>"
items[1]="<a href='http://www.xarasoccer.com/' target='_blank'><img src='sponsors/images/xara_white_logo.gif' width='150' height='158' alt='XARA Soccer' border='0'></a>"
items[2]="<a href='http://www.fcdallas.com' target='_blank'><img src='sponsors/images/fcd_logo.gif' width='150' height='158' alt='' border='0'></a>"
items[3]="<a href='http://www.huffinessubaru.com/index.htm' target='_blank'><img src='sponsors/images/huffines_logo.gif' width='150' height='158' alt='Huffines Suburu' border='0'></a>"

function rotater() {
	document.getElementById("placeholder").innerHTML = items[current];
	current = (current==items.length-1) ? 0 : current + 1;
	setTimeout("rotater()",howOften*1000);
}

function rotater() {
	if(document.layers) {
		document.placeholderlayer.document.write(items[current]);
		document.placeholderlayer.document.close();
	}
	if(ns6)document.getElementById("placeholderdiv").innerHTML=items[current]
		if(document.all)
			placeholderdiv.innerHTML=items[current];
	current = (current==items.length-1) ? 0 : current + 1; //increment or reset
	setTimeout("rotater()",howOften*1000);
}
window.onload=rotater;

