// ************************************************************************************// ** This file has been created with the Rotating Content Tool from R9 Tools.       **// ** For more information, visit us on the web:                                     **// **                                                                                **// **     Rotating Content Tool   -- http://r9tools.com/rotate/                      **// **     Author: Randy Hoyt      -- http://www.randyhoyt.net/                       **// ************************************************************************************varLength = 6var entryContent = new Array(varLength)entryContent[0] = "Minnesota has 7,326 square miles of water within state borders."entryContent[1] = "Minnesota is the starting point of the third largest river in the world...the Mississippi."entryContent[2] = "The land of 10,000 lakes is really closer to 11,800 (based on a minimum size of 10 acres)."entryContent[3] = "Minnesota is from a Dakota Sioux Indian word that means &ldquo;cloudy water&rdquo; or &ldquo;sky water&rdquo; and refers to local rivers."entryContent[4] = "The Minnesota state motto is &ldquo;L&rsquo;Etoile du Nord&rdquo;, meaning &ldquo;The Star of the North&rdquo; in French."entryContent[5] = "Minneapolis has more golfers per capita than any other city in the country."var randomNumber = Math.random()randomNumber *= varLengthrandomNumber = parseInt(randomNumber)if(isNaN(randomNumber)) randomNumber = 0else randomNumber %= varLengthselectedContent = entryContent[randomNumber]document.write (selectedContent)
