// ==============================================
// 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] = "''You can tell the character of a man by the way he handles his horse.''";

Quotation[1] =  "''When you are in fog or a snowstorm, give your horse his head and he will take you home.''";

Quotation[2] = "''A horse with a wavy tail is usually a good horse.''";

Quotation[3] = "''Ride a horse with some looks. He doesn't have to be ugly to get the job done.''";

Quotation[4] = "''Ride a horse you can trust. It's cheap insurance.''";

Quotation[5] = "''If you look after your horse, he will look after you.''";

Quotation[6] = "''Loading a horse in a single horse trailer is like trying to stuff him down a gopher hole.''";



// ======================================
// 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();
