<!--
/*
 * The 'fabFour.js' script picks a random fact and displays it.
 * It was cobbled together by Guy Paquette, www.webuild.biz, from code snippets around the www - so I can't justify copyrighting it.
 * Read the comments below for instructions on how to manipulate things.
 * $Date: 2008-01-04 20:23:18 -0400 (Thu, 04 Jan 2008) $
 * $Rev: 1.0 $
 */


/* THIS IS THE ARRAY CONTAINING ALL YOUR FACTS.
 * SET THE ARRAY SIZE AT THE TOP (TOTAL # facts and remember that you start at zero!).
 * FOLLOW THE CODE PATTERN BELOW TO ADD MORE FACTS (DO NOT USE QUOTE MARKS INSIDE THE QUOTE MARKS!)
 * CODE PATTERN: facts[next#] = "trivia bit that is less than 85 characters";
 */
facts = new Array(10);
facts[0] = "The town of Liverpool had to paint 'Penny Lane' on buildings since 'Penny Lane' street signs continually disappeared!";
facts[1] = "Paul McCartney wrote 'Hey Jude' for Julian Lennon, John's son.";
facts[2] = "Americans heard The Beatles on the air for the first time on Dec 17, 1963, thanks to DJ James Carroll.";
facts[3] = "Timothy Leary & Tommy Smothers were background clappers on John's song, 'Give Peace a Chance'.";
facts[4] = "On January 1, 1962, The Beatles unsuccessfully auditioned for Decca Records in London.";
facts[5] = "On April 4, 1964, The Beatles held 14 slots on Billboard's Hot 100 chart.";
facts[6] = "The Beatles had two left handed members. Paul and Ringo - who was noted for his unique drumming style.";
facts[7] = "Decca Records, upon rejecting the Beatles in 1962, stated that guitar music was on the way out.";
facts[8] = "On April 10, 1970, Paul McCarney officially announced the breakup of the Beatles.";
facts[9] = "George Martin produced comedy albums prior to leading production on the Beatles' albums.";


/* THIS CALCULATES A RANDOM NUMBER WITHIN THE RANGE & PUTS IT IN THE VARIABLE CALLED 'INDEX' */
index = Math.floor(Math.random() * facts.length);


/* THIS DISPLAYS THE FACT AT THE INDEX NUMBER CHOSEN */
document.write("<DL  class=\"text\">");
document.write("<span class=\"headerRed\">Fab Four Fact...</span>" + "<DT>" + facts[index] + "</DL>");

// -->