// ==============================================
// 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!
// to show quote marks, always preceed with a backslash - ie: \"Hello\" to show "Hello"

Quotation[0] = "To prevent wear to your playfield, replace the balls regularily.";
Quotation[1] = "Electronic Pinball's have batteries, replace them once a year.";
Quotation[2] = "Clean the playfield often.";
Quotation[3] = "Replace blown globes, especially the feature lamps.";
Quotation[4] = "Never use grease or similar on plungers!";
Quotation[5] = "Rebuild Flipper Assemblies when the flippers lose their power.";
Quotation[6] = "Broken Pinball rubbers cause problems... Replace them when they start to frey.";
Quotation[7] = "Do not use a furniture polish to clean the playfield.";
Quotation[8] = "If you're unsure how to fix the problem on your Pinball - click on \"Ask A Pinball Tech\" and ask us.";
Quotation[9] = "Pinball is a Big Kids Toy!";
Quotation[10] = "Always use the correct parts for the repair";
Quotation[11] = "Replace the #44 globes with #47's for longer life, and to help prevent connector burn out.";
Quotation[12] = "Flippers have an \"End Of Stroke\" switch. Make sure it is adjusted correctly.";
Quotation[13] = "Coils burn out for a reason. Replacing the coil only fixes part of the problem.";
Quotation[14] = "The \"Black\" dirt on the playfield is Carbon dust.";
Quotation[15] = "Being good at Pinball is not the sign of a wasted youth - it cost a lot of money!";
Quotation[16] = "Pinball Machines must be levelled correctly for the best play.";
Quotation[17] = "Did you know that Pinball came from a game called Bagatelle? Check out \"Pinball History\" to learn more.";
Quotation[18] = "Montague Redgrave patented the \"Ball Shooter\" in 1871. Without this, Pinball would not exist.";
Quotation[19] = "The words \"FOR AMUSEMENT ONLY\" are on Pinball Machines so they are not classified as Gambling Devices.";
Quotation[20] = "The \"Plumb Bob Tilt\" was invented by Harry Williams in 1935, and is still in use today.";
Quotation[21] = "Need your Pinball Machine repaired? Click on \"Pinball Repair\" to book in a service.";
Quotation[22] = "STERN Pinball, Inc. is the only coin-op pinball manufaturer on the planet!";
Quotation[23] = "Want to know how to open your pinball? Check out \"Pinball Basics\" for more information.";
Quotation[24] = "Need to know what a particular part is called? Check out \"Pinball Basics\" for more information.";


// ======================================
// 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();