// JavaScript Document

// ==============================================
// 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] = "In Japan, you are expected to slurp while having liquids such as soups. If you don’t, it is considered that you do not like the food and the host may feel offended.";
Quotation[1] = "The Japanese Kimono is worn by both men and women? ";
Quotation[2] = "You should never stick your chopsticks upright into your bowl of rice or other food as this is an old Japanese custom for offering food, especially rice, to the dead. ";
Quotation[3] = "In Japan, a peach can cost up to $4 a piece while a watermelon can cost up to $100.";
Quotation[4] = "The Japanese love corn, sesame seeds, and mayonnaise on their pizza.";

// ======================================
// 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();

