/*********************************************
  random_text: each time the page reloads, another quote.
  This file is being kept separately from the library.js for
  convenince and easier maintenance
*********************************************/

<!-- This script was modified from one of the many available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  hagman (hagman@easybay.org) -->
<!-- Web Site:  http://hagman.trance.nu -->

function random_text(){
var numb = 22 // Number of lines (Incl. 0)
title_text = new Array();

// Array contents. Change var numb if changed.
title_text[0] = "You haven't seen a tree until you've seen its shadow from the sky.<P ALIGN='right'>— Amelia Earhart";
title_text[1] = "When once you have tasted flight, you will forever walk the earth with your eyes turned skyward, for there you have been, and there you will always long to return.<P ALIGN='right'>— Leonardo da Vinci";
title_text[2] = "My soul is in the sky.<P ALIGN='right'>— William Shakespeare, A Midsummer Night's Dream, Act V. Scene I.";
title_text[3] = "More than anything else the sensation is one of perfect peace mingled with an excitement that strains every nerve to the utmost, if you can conceive of such a combination.<P ALIGN='right'>— Wilbur Wright";
title_text[4] = "It's wonderful to climb the liquid mountains of the sky, Behind me and before me is God and I have no fears. <P ALIGN='right'> — Helen Keller";
title_text[5] = "I fly because it releases my mind from the tyranny of petty things . . . <P ALIGN='right'> — Antoine de Saint-Exupéry";
title_text[6] = "Dad, I left my heart up there. <P ALIGN='right'> — Francis Gary Powers, CIA U-2 pilot shot down over the Soviet Union, describing his first flight at age 14.";
title_text[7] = "To invent an airplane is nothing. To build one is something. To fly is everything. <P ALIGN='right'> — Otto Lilienthal";
title_text[8] = "Aeronautics was neither an industry nor a science. It was a miracle.<P ALIGN='right'> — Igor Sikorsky";
title_text[9] = "The engine is the heart of an aeroplane, but the pilot is its soul.<P ALIGN='right'> — Sir Walter Raleigh";
title_text[10] = "I ask people who don't fly, 'How can you not fly when you live in a time in history when you can fly?' <P ALIGN='right'> — William Langewische";
title_text[11] = "To most people, the sky is the limit. To those who love aviation, the sky is home.<P ALIGN='right'>— Anonymous";
title_text[12] = "Isn't it astonishing that all these secrets have been preserved for so many years just so that we could discover them!!<P ALIGN='right'>— Orville Wright";
title_text[13] = "In soloing -- as in other activities -- it is far easier to start something than it is to finish it.<P ALIGN='right'>— Amelia Earhart";
title_text[14] = "There's no such thing as a natural-born pilot<P ALIGN='right'>— Chuck Yaeger";
title_text[15] = "Flying is done largely with the imagination.<P ALIGN='right'>— Wolfgang Langewiesche";
title_text[16] = "And let's get one thing straight. There's a big difference between a pilot and an aviator. One is a technician; the other is an artist in love with flight.<P ALIGN='right'>— Elray Jeppesen";
title_text[17] = "Flying a plane is no different from riding a bicycle. It's just a lot harder to put baseball cards in the spokes.<P ALIGN='right'>— Captain Rex Kramer, Airplane";
title_text[18] = "Lady, you want me to answer you if this old airplane is safe to fly? Just how in the world do you think it got to be this old?<P ALIGN='right'>— Anonymous";
title_text[19] = "Both optimists and pessimists contribute to the society. The optimist invents the aeroplane, the pessimist the parachute.<P ALIGN='right'>— George Bernard Shaw";
title_text[20] = "You know they invented wheelbarrows to teach FAA inspectors to walk on their hind legs.<P ALIGN='right'>— Marty Caidin";
title_text[21] = "Flying an aeroplane with only a single propeller to keep you in the air. Can you imagine that?<P ALIGN='right'>— Capt. Jean Luc Picard, Star Trek Next Generation";
title_text[22] = "The Wright Brothers created the single greatest cultural force since the invention of writing. The airplane became the first World Wide Web, bringing people, languages, ideas, and values together.<P ALIGN='right'>— Bill Gates, CEO, Microsoft Corporation";


// End array

var doit = title_text[Math.round(Math.random()*numb)];
document.write("<title>:[ JavaScript Source ]: - "+doit+"</title>");
document.write(doit)

}
