// ************************************************************************************
// ** This file has been created with the Rotating Content Tool by Amesbury Web.     **
// ** For more information, visit us on the web:                                     **
// **                                                                                **
// **     Rotating Content Tool   -- http://rotatecontent.com/                       **
// **     Company: Amesbury Web   -- http://amesburyweb.com/                         **
// **     Author:  Randy Hoyt     -- http://randyhoyt.com/                           **
// **                                                                                **
// ************************************************************************************

varLength = 1
var entryContent = new Array(varLength)

entryContent[0] = " <hr size=\"1\" width=\"100%\"><span class=\"topnav\"><a href=\"http://schoolhousewidgets.com\">SchoolhouseWidgets.com</a> | <a href=\"http://bestlatin.blogspot.com\" target=\"_blank\">Bestiaria Latina blog</a> | <a href=\"http://aesopus.pbworks.com\" target=\"_blank\">Aesopus wiki</a> | <a href=\"http://latinviaproverbs.pbworks.com\" target=\"_blank\">Proverbs wiki</a> </span>"

var randomNumber = Math.random()
randomNumber *= varLength
randomNumber = parseInt(randomNumber)
if(isNaN(randomNumber)) randomNumber = 0
else randomNumber %= varLength
selectedContent = entryContent[randomNumber]

document.write (selectedContent)