window.onload = function() { setQuote(); }; //store the quotations in arrays quotes = new Array(10); quotes[0] = "We recommend quarterly scheduled window cleanings."; quotes[1] = "A quality company will clean your window tracks."; quotes[2] = "We use only \"green\" products that will not stain or leave residue."; quotes[3] = "We handwash all of your screens as part of the service!"; quotes[4] = "You'll always get the same personnell for each cleaning."; quotes[5] = "We pride ourselves in high quality work done with elbow grease, not harsh chemicals or power washers."; quotes[6] = "We are owner run and operated so you'll always get a quality job."; quotes[7] = "We recommend quarterly scheduled window cleanings."; quotes[8] = "We recommend quarterly scheduled window cleanings."; quotes[9] = "We recommend quarterly scheduled window cleanings."; //calculate a random index index = Math.floor(Math.random() * quotes.length); function setQuote() { //display the quotation document.getElementById('quotebox').innerHTML="

" + quotes[index] +"

" + "\n"; //done } //window.onLoad=setQuote();