var howOften = 20; //number often in seconds to rotate
var current = 0; //start the counter at 0
var ns6 = document.getElementById&&!document.all; //detect netscape 6
// place your images, text, etc in the array elements here
var items = new Array();
items[0]="
" ;
items[1]="Did you know?
The most money ever paid for a cow in an auction was $1.3 million.
";
items[2]="
";
items[3]="Did you know?
Donald Duck's middle name is Fauntleroy.
";
items[4]="
";
items[5]="Did you know?
The dot over the letter i is called a tittle.
";
items[6]="
";
items[7]="Did you know?
Over 52% of Americans drink coffee.
";
items[8]="Did you know?
Google's name is a play on the word googol, which refers to the number 1 followed by one hundred zeroes.
";
items[9]="ACC provides an excellent hosting facility!!! The facility provides outstanding availability with reliable power and climate controls. Combined superior technical support gives us piece of mind that our equipment is safe.
-Todd Sasala
Director of Information Systems
Cedar Point
";
items[10]="ACC did a fantastic job in assisting and planning the implementing of our Wide Area Network (MPLS). It has made sharing information between our many companies so much easier. Cedar Fair Platinum Season Pass Holders can use their passes at any park. The speed of our network makes validating passes fast and convenient for our Guests.
-Todd Sasala
Director of Information Systems
Cedar Point
";
items[11]="I want to tell you ...having Advanced Computer Connections service makes our lives in the computer side of our business much more peaceful. Your network engineer Jeff’s response is immediate with a calm dedicated approach to any problem we incur. His solutions are quick, built for a quality future and with a sense that he really cares. Maintaining and growing accounts depend on a foundation of experience and quality service. Thank you!
-Greg Hill
Owner
Sawmill Creek Resort
";
items[12]="In today's ever changing hospitality market Advanced Computer Connections provides us with pro-active and expandable IT solutions along with professional and responsive customer service. A definite recommendation for anyone who needs IT Solutions and Service in a fast and growing IT market.
-Matt Dick
IT Manager
Kalahari
";
items[13]="
";
items[14]="
";
items[15]="
";
items[16]="
";
items[17]="
" ;
items[18]="
" ;
items[19]="
" ;
items[20]="
" ;
items[21]="Did you know?
The sentence 'The quick brown fox jumps over a lazy dog' uses every letter of the alphabet.
";
function rotater() {
current = (Math.ceil((items.length)*Math.random()))-1
if(document.layers) {
document.placeholderlayer.document.write(items[current]);
document.placeholderlayer.document.close();
}
if(ns6)document.getElementById("placeholderdiv").innerHTML=items[current]
if(document.all)
// will show the number in IE if you UNREM the next line and REM the line after
// placeholderdiv.innerHTML=current+"
"+items[current];
placeholderdiv.innerHTML= items[current];
//current = (current==items.length-1) ? 0 : current + 1; increment or reset
setTimeout("rotater()",howOften*1000);
}
window.onload=rotater;
//–>