// ************************************************************************************
// ** 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 = 3
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)."

var randomNumber = Math.random()
randomNumber *= varLength
randomNumber = parseInt(randomNumber)
if(isNaN(randomNumber)) randomNumber = 0
else randomNumber %= varLength
selectedContent = entryContent[randomNumber]

document.write (selectedContent)