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

entryContent[0] = " <img border=\"0\" src=\"../../stories/gwilliams.jpg\" width=\"123\" height=\"150\"><br> <font face=\"Verdana\" size=\"2\"><b> <font color=\"#0A1B52\">Gary</font></b><br> <font color=\"#3E3E3E\">Liver Recipient<br> </font> <i><a href=\"/stories.html\">Our Stories »</a></i></font>"
entryContent[1] = " <img border=\"0\" src=\"../../stories/trutledge.jpg\" width=\"123\" height=\"150\"><br> <font face=\"Verdana\" size=\"2\"><font color=\"#0A1B52\"><b>Terry</b></font><br> <font color=\"#3E3E3E\">Liver Recipient<br> </font> <i><a href=\"/stories.html\">Our Stories »</a></i></font>"
entryContent[2] = " <img border=\"0\" src=\"../../stories/Ginny.jpg\" width=\"123\" height=\"150\"><br> <font face=\"Verdana\" size=\"2\"><font color=\"#0A1B52\"><b>Ginny</b></font><br> <font color=\"#3E3E3E\">Waiting for Liver<br> </font> <i><a href=\"/stories.html\">Our Stories »</a></i></font>"
entryContent[3] = " <img border=\"0\" src=\"../../stories/Paulfrm4207.jpg\" width=\"123\" height=\"150\"><br> <font face=\"Verdana\" size=\"2\"><font color=\"#0A1B52\"><b>Paul</b></font><br> <font color=\"#3E3E3E\">Liver Recipient<br> </font> <i><a href=\"/stories.html\">Our Stories »</a></i></font>"
entryContent[4] = " <img border=\"0\" src=\"../../stories/Joann.jpg\" width=\"123\" height=\"150\"><br> <font face=\"Verdana\" size=\"2\"><b> <font color=\"#0A1B52\">Joann</font></b><br> <font color=\"#3E3E3E\">Waiting for Liver<br> </font> <i><a href=\"/stories.html\">Our Stories »</a></i></font>"
entryContent[5] = " <img border=\"0\" src=\"../../stories/Neal.jpg\" width=\"123\" height=\"150\"><br> <font face=\"Verdana\" size=\"2\"><b> <font color=\"#0A1B52\">Neal</font></b><br> <font color=\"#3E3E3E\">Liver Recipient<br> </font> <i><a href=\"/stories.html\">Our Stories »</a></i></font>"
entryContent[6] = " <img border=\"0\" src=\"../../stories/Pete.jpg\" width=\"123\" height=\"150\"><br> <font face=\"Verdana\" size=\"2\"><b> <font color=\"#0A1B52\">Pete</font></b><br> <font color=\"#3E3E3E\">Liver Recipient<br> </font> <i><a href=\"/stories.html\">Our Stories »</a></i></font>"
entryContent[7] = " <img border=\"0\" src=\"../../stories/Robert.jpg\" width=\"123\" height=\"150\"><br> <font face=\"Verdana\" size=\"2\"><b> <font color=\"#0A1B52\">Robert</font></b><br> <font color=\"#3E3E3E\">Liver Recipient<br> </font> <i><a href=\"/stories.html\">Our Stories »</a></i></font>"
entryContent[8] = " <img border=\"0\" src=\"../../stories/Rosalie.jpg\" width=\"123\" height=\"150\"><br> <font face=\"Verdana\" size=\"2\"><b> <font color=\"#0A1B52\">Rosalie</font></b><br> <font color=\"#3E3E3E\">Liver Recipient<br> </font> <i><a href=\"/stories.html\">Our Stories »</a></i></font>"
entryContent[9] = " <img border=\"0\" src=\"../../stories/Jean.jpg\" width=\"123\" height=\"150\"><br> <font face=\"Verdana\" size=\"2\"><b> <font color=\"#0A1B52\">Jean</font></b><br> <font color=\"#3E3E3E\">Waiting for Liver<br> </font> <i><a href=\"/stories.html\">Our Stories »</a></i></font>"

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

document.write (selectedContent)