// ************************************************************************************
// ** 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] = " <span style=\"font-size: 20px;color: #FF0000;font-family:'trebuchet MS', Verdana, serif;\"><em>The value of a man should be seen in what he gives and not in what he is able to receive.</em></span> <em>~Albert Einstein</em>"
entryContent[1] = " <span style=\"font-size: 20px;color: #008000; font-family:'trebuchet MS', Verdana, 'tw Cen MT', serif\"><strong><em>Action speaks louder than words but not nearly as often.</em></strong></span> <em>~ Mark Twain</em>"
entryContent[2] = " <span style=\"font-size: 20px;color: #0000FF;\"><strong><em>I have found that among its other benefits, giving liberates the soul of the giver.</em></strong></span> <em>~Maya Angelou</em>"
entryContent[3] = " <span style=\"font-size: 20px;color: #000080;\"><strong><em>Without music, life would be a mistake</em></strong></span>. <em>~Nietzsche </em>"
entryContent[4] = " <span style=\"font-family:'trebuchet MS', Verdana, 'tw Cen MT', serif; font-size: 20px;color: #800000;\"><strong><em>It isn&#146;t where you came from; it&#146;s where you&#146;re going that counts.</em></strong></span> <em>~Ella Fitzgerald</em>"
entryContent[5] = " <span style=\"font-size: 20px;font-family: Georgia;color: #FF0000;\"><strong><em>One good thing about music, when it hits you, you feel no pain.</em></strong></span> <em>~Bob Marley</em>"
entryContent[6] = " <span style=\"color: #008080;font-size: 20px;font-family: Arial, Helvetica, sans-serif;\"><strong><em>The beautiful thing about learning is nobody can take it away from you.</em></strong></span> <em>~BB King</em>"
entryContent[7] = " <span style=\"font-size: 20px;color: #800000;\"><strong><em>Let the choices you make today be choices you can live with tomorrow.</em></strong></span> <em> ~Anonymous</em>"
entryContent[8] = " <span style=\"font-family:'trebuchet MS', Verdana, 'tw Cen MT', serif; color: #0000FF;font-size: 20px;\"><strong><em>Doing little things well is a step toward doing big things better.</em></strong></span> <em> ~Anonymous</em>"
entryContent[9] = " <em><span style=\"font-size: 20px; font-family:'trebuchet MS', Verdana, 'tw Cen MT', serif; color: #808080;\"><strong>Strive not to be a success, but rather to be of value.</strong></span></em> <em>~Albert Einstein</em>"

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

document.write (selectedContent)