// This is the implementation of rotatelogos
// Six 9s Associates, Inc.
// Version 1.1 - August 9, 2007
//
// Include this script on your page
//
		var delay=2000; 		//specify delay between rotations (milleseconds)
		var itemsToRotate=7; 	//specify how many logos you want to rotate through
		var counter=1; 			//counter, leave as is

		function rotatelogos() {
			//hide visibility of all logos
			for(i=1; i<=itemsToRotate; i++) {
				document.getElementById("logo"+i).style.display="none";
			} // end for loop

			//display visibility of next logo in rotation
			document.getElementById("logo"+counter).style.display="";

			//increment counter if less than max items to rotate, otherwise reset to 1
			if (counter < itemsToRotate) { counter++ } else { counter=1 };

			//keep the rotation going
			self.setTimeout('rotatelogos()', delay);
		} // end function