// ==============================================
// 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] = "&#0147;Give a man a fish and you feed him for a day. Teach a man to fish and you get rid of him for the weekend&#0148;.....Anonymous";
Quotation[1] = "&#0147;If today were a fish...I'd throw it back&#0148;......Anonymous";
Quotation[2] = "&#0147;There was never an angler who lived but that there was a fish capable of taking the conceit out of him&#0148;......Zane Grey";
Quotation[3] = "&#0147;Any man who pits his intelligence against a fish and loses has it coming&#0148;......John Steinbeck";
Quotation[4] = "&#0147;Only the game fish swim upstream&#0148;......John Trotwood Moore";
Quotation[5] = "&#0147;Life is too short not to go fishing&#0148;.....Anonymous";
Quotation[6] = "&#0147;Fishing is not just for weekends anymore&#0148;......Anonymous";
Quotation[7] = "&#0147;It is not a fish until it is on the bank&#0148;.....Irish Proverb";
Quotation[8] = "&#0147;If people concentrated on the really important things in life, there would be a shortage of fishing poles&#0148;......Doug Larsen";
Quotation[9] = "&#0147;Work is something I do in-between fishing trips&#0148;......Dwight D. Eisenhower";
Quotation[10] = "&#0147;I would rather catch the poorest steelhead than the grandest bass&#0148;......former president Jimmy Carter";
Quotation[11] = "&#0147;Last year over 38 million Americans applied for a fishing license. Only 1.9 million applied for a marriage license. This proves that fishing is 20 times more popular than marriage&#0148;......Dennis Lewis";
Quotation[12] = "&#0147;Treat a captured steelhead with respect for its beauty, battle and rareness&#0148;......Milt Keiser";
Quotation[13] = "&#0147;The Gods don't count the days spent fishing against man's allotted time on this earth&#0148;......unknown";
Quotation[14] = "&#0147;Old Steelheaders never die, they just wade away&#0148;......Richard Gozinya";
Quotation[15] = "&#0147;There is a fine line between fishing and standing on the bank looking like an idiot&#0148;......Steven Wright";
Quotation[16] = "&#0147;Game fish are to valuable to be caught only once&#0148;.....Lee Wulff";
Quotation[17] = "&#0147;My biggest worry is that when I'm dead and gone, my wife will sell my fishing gear for what I said I paid for it&#0148;.....Koos Brandt";
Quotation[18] = "&#0147;I am haunted by waters&#0148;.....Norman Maclean";
Quotation[19] = "&#0147;The best time to go fishing is when you can get away&#0148;.....Robert Traver";
Quotation[20] = "&#0147;Men and fish are alike. They both get into trouble when they open their mouths&#0148;.....Jimmy D. Moore";
Quotation[21] = "&#0147;It is only the inexperienced and thoughtless who find pleasure in killing fish for the mere sake of killing them. No sportsman does this&#0148;.....W.C. Prime";
Quotation[22] = "&#0147;There is certainly something in angling that tends to produce a serenity of the mind&#0148;.....Washington Irving";
Quotation[23] = "&#0147;There is no greater fan of fly fishing than the worm&#0148;.....Patrick McManus";
Quotation[24] = "&#0147;For the supreme test of a fisherman is not how many fish he has caught, not even how he has caught them, but what he has caught when he has caught no fish&#0148;.....John H. Bradley";
Quotation[25] = "&#0147;Many go fishing all their lives without knowing that is is not the fish they are after&#0148;.....Henry David Thoreau";
Quotation[26] = "&#0147;All fisherman are liars except you and me and to tell you the truth, I'm not so sure about you&#0148;.....unknown";
Quotation[27] = "&#0147;Of all the liars among mankind, the fisherman is the most trustworthy&#0148;.....William Sherwood Fox";
Quotation[28] = "&#0147;I fish better with a lit cigar; some people fish better with talent&#0148;.....Nick Lyons";
Quotation[29] = "&#0147;Everyone ought to believe in something; I believe I'll go fishing&#0148;.....unknown";
Quotation[30] = "&#0147;Then two best times to fish is when it's rainin' and when it ain't&#0148;.....Patrick F. McManus";


// ======================================
// 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();

