// ************************************************************************************
// ** 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] = " My name is <strong>Laura Gibbs,</strong> and I'm an online instructor at the University of Oklahoma (<a href=\"http://mythfolklore.net/\">see my courses</a>). You can contact me by leaving a comment at this blog, or by sending me an email, laurakgibbs at gmail. :-)"

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

document.write (selectedContent)