// ==============================================
// 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] = "Don't overstuff your washer.  It can cause poor rinsing and detergent deposits.";
Quotation[1] = "Folding your laundry right after it comes out of the dryer will help prevent excessive wrinkles.";
Quotation[2] = "New colored garments (especially red ones) should be washed separately first to avoid bleeding.";
Quotation[3] = "Close buttons, zip zippers, and fasten clasps to prevent damage to delicate items within the load.";

// ======================================
// 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();