
// ==============================================
// 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] = " \"I was shocked by how simple KallOut is to use over Outlook.\" -Tim";
Quotation[1] = " \"I try out lots of apps online and KallOut is one of the few I\'ve actually left on my system. Thanks!\" -Matt";
Quotation[2] = " \"KallOut allows me to constantly refine my search without interfering with my work flow.\"  -Martin";
Quotation[3] = " \"KallOut... a very handy tool I have come to depend on!  \" -Beth";
Quotation[4] = " \"I selected \'Lennon\' in an email and uncovered a HUGE library of old Beatles videos. Spooky smart.\" -Mike";
Quotation[5] = " \"This utility should come with all Office applications.\" -David Brooks"; 
Quotation[6] = " \"Retroactively Obvious...\" <BR /> -Jean-Louis Gass&eacute;e"; 
Quotation[7] = " \"Innovative idea for the <BR /> Internet as a whole.\" -Gary"; 
//Quotation[1] = "Sanity is a golden apple with no shoelaces.";


// ======================================
// 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]);}
//function showQuotation(){document.write(Quotation[8]);}
showQuotation();

