<!--
/*
copyright 2004 U.A.C Media      
Author craig Hunt                
List of quotes and array for     
quote of the   day script        
*/
//create quotes array
var quoteOfTheDay = new Array()
quoteOfTheDay[0]="The message for business people contemplating their place in cyberspace is simple and direct: get linked or get lost <br/> <i>~Vic Sussman and Kenan Pollack</i> ";
quoteOfTheDay[1]="<br/>The Internet is the world's largest library. It's just that all the books are on the floor..<br> <i>~John Allen Paulos</i>";
quoteOfTheDay[2]="Give a person a fish and you feed them for a day, teach that person to use the Internet and they won't bother you for weeks.<br> <i>~Author Unknown</i> ";
quoteOfTheDay[3]="<br/> <br/>The Internet isn't free, It just has an economy that makes no sense to capitalism.<br> <i>~Brad Shapcott</i>";
quoteOfTheDay[4]="<br/>The Internet is so big, so powerful and pointless that for some people it is a complete substitute for life.<br/> <i>~Andrew Brown</i>";
quoteOfTheDay[5]="<br/>My favorite thing about the Internet is that you get to go into the private world of real creeps without having to <strong>smell</strong> them.<br /> <i>~Penn Jillett</i>";
quoteOfTheDay[6]="There are 5,000 great people for every jerk on Usenet. But that still is a lot of jerks. Proceed with caution and eyes wide open. <br><i>~Don Rittner</i>";



var arrLength =quoteOfTheDay.length -1


//get random number
var whichQuote = Math.floor(Math.random()*(arrLength));

//get random quote
function writeQuote(whichQuote)
{
var quote = quoteOfTheDay[whichQuote];
return quote;
}
//write quote to page
var todaysQuote = writeQuote(whichQuote);
document.write(todaysQuote);

//-->

















