// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "<img src=\"/images/3.jpg\" align=\"left\">";
Quotation[1] = "<img src=\"/images/4.jpg\" align=\"left\">";
Quotation[2] = "<img src=\"/images/5.jpg\" align=\"left\">";
Quotation[3] = "<img src=\"/images/6.jpg\" align=\"left\">";
Quotation[4] = "<img src=\"/images/7.jpg\" align=\"left\">";
Quotation[5] = "<img src=\"/images/8.jpg\" align=\"left\">";
Quotation[6] = "<img src=\"/images/23.jpg\" align=\"left\">";
Quotation[7] = "<img src=\"/images/24.jpg\" align=\"left\">";
// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
