 function displayQuote(displaycount){

   // Random Quotes v1.1

   // Modified by Rogue4

   // Modified by Werner Moshammer

   // http://www.geocities.com/Area51/Vault/4516/



   arraycount=2

   quote = new Array(arraycount);

   author = new Array(arraycount);

  

	

	//Put all the quotes in this section. Add the quotes and authors incrementing the numbers.

	//Make sure that the entire quote remains in the same line. THIS IS VERY IMPORTANT

	

	 quote[0] = "If God forbade drinking, would He have made wine so good?";

   author[0] = "Cardinal Richelieu";

   

	 quote[1] = "Wine is the drink of the gods, milk the drink of babies, tea the drink of women, and water the drink of beasts.";

   author[1] = "John Stuart Blackie";

   

	 quote[2] = "Drink wine, and you will sleep well. Sleep, and you will not sin. Avoid sin, and you will be saved. Ergo, drink wine and be saved.";

   author[2] = "Medieval German Saying";



	 quote[3] = "Wine ... cheereth God and man.";

	 author[3] = "Judges, 9:13";

	 

	 quote[4] = "A man cannot make him laugh - but that's no marvel; he drinks no wine.";

	 author[4] = "William Shakespeare<br>[Henry IV Part 2]";



	 quote[5] = "In vino veritas (In wine is truth)";

	 author[5] = "Pliny";



	 quote[6] = "Wine is bottled poetry.";

	 author[6] = "Robert Louis Stevenson";

	 	

	 quote[7] = "Good wine ruins the purse; bad wine ruins the stomach.";

	 author[7] = "Spanish Saying";



	 quote[8] = "The best use of bad wine is to drive away poor relations.";

	 author[8] = "French Proverb";

	 

	 quote[9] = "Nothing more excellent nor more valuable than wine was ever granted mankind by God.";

	 author[9] = "Plato";

	 

	 quote[10] = "Wine is the most healthful and most hygienic of beverages.";

	 author[10] = "Louis Pasteur";



	 quote[11] = "What though youth gave love and roses age still leaves us friends and wine.";

	 author[11] = "Thomas Moore";



	 quote[12] = "Wine rejoices the heart of man and joy is the mother of all virtues.";

	 author[12] = "Johann Wolfgang vonGoethe, 1771";



	 quote[13] = "Wine that maketh glad the heart of man.";

	 author[13] = "The Book of Psalms, 104:15";

	 

	 quote[14] = "Drink no longer water, but use a little wine for thy stomach's sake.";

	 author[14] = "The First Epistle of Paul the Apostle to Timothy, 5:23";



	 quote[15] = "Wine is a peep-hole on a man.";

	 author[15] = "Alcaeus c. 625 - c. 575 B.C. Fragment 104 ";




	 quote[16] = "Wine to me is passion. It is family and friends, warmth of heart and generosity of spirit.";

	 author[16] = "Robert Mondavi";

	 





	//calculates a random index

  index = Math.floor(Math.random() * quote.length);



  //displays quotes

  ind=index+1; qcount=arraycount+1;

  if (displaycount==0)

    document.write("<table border=0 width=100% align=center><tr><td><td align=left class=quote><font color=#CCCCCC>" + 

                   quote[index] + "</font></td></tr><tr>");

  else { 

    document.write('<table border=0 width=100% align=center><tr><td with=10>&nbsp;</td><td align=left class=quote><font color=#CCCCCC>' +

		               "&quot;" + quote[index] + "&quot;</font></td></tr>");

			

    document.write("<tr><td align=right colspan=2 class=quote><font size=-1 color=#CCCCCC face=Verdana,Sans-Serif>" + author[index] +   "</font></td></tr></table>");}

}



displayQuote(1);