// ************************************************************************************
// ** 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 = 6
var entryContent = new Array(varLength)

entryContent[0] = "<img src=\"http://www.navigators.org/us/ministries/navconnect/images/students-o1.png\" id=\"students2\">"
entryContent[1] = "<img src=\"http://www.navigators.org/us/ministries/navconnect/images/students-o2.png\" id=\"students2\">"
entryContent[2] = "<img src=\"http://www.navigators.org/us/ministries/navconnect/images/doctors.png\" id=\"students2\">"
entryContent[3] = "<img src=\"http://www.navigators.org/us/ministries/navconnect/images/family.png\" id=\"students2\">"
entryContent[4] = "<img src=\"http://www.navigators.org/us/ministries/navconnect/images/men.png\" id=\"students2\">"
entryContent[5] = "<img src=\"http://www.navigators.org/us/ministries/navconnect/images/women.png\" id=\"students2\">"

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

document.write (selectedContent)
