
// ==============================================
// 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] = "Hallo, Goeie dag (Afrikaans)";
Quotation[1] = "Ola (Aragonese)";
Quotation[2] = "Heebee (man speaking)-Tous (woman speaking or a man speaking to a woman) (Arapaho)";
Quotation[3] = "Kaixo (Basque)";
Quotation[4] = "Salud, Mat an traou ganeoc'h? (Breton)";
Quotation[5] = "Hola, Bon dia or Hola? Si? Digui? on phone (Catalan)";
Quotation[6] = "Hej or Hallo on phone (Danish)";
Quotation[7] = "Hallo, Goededag,  Goeiedag (Dutch)";
Quotation[8] = "Saluton (Esperanto)";
Quotation[9] = "Ola (Galician)";
Quotation[10] = "Hallo or Guten Tag (German)";
Quotation[11] = "Aloha (Hawaiian)";
Quotation[12] = "Shalom (Hebrew)";
Quotation[13] = "Namaste (Hindi)";
Quotation[14] = "Selamat siang or Halo on phone (Indonesian)";
Quotation[15] = "Dia duit, Dia is Muire duit (reply)(Irish Gaelic)";
Quotation[16] = "Ciao or Salve, or Pronto? on phone (Italian)";
Quotation[17] = "Labas, Sveikas, Sveiki(Lithuanian)";
Quotation[18] = "Kia ora, Kia ora koutou (pl) (Maori)";

// ======================================
// 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]);}
showQuotation();
