<!--
function MM_reloadPage(init) 
 {  //reloads the window if Nav4 resized
    if (init==true) with (navigator) 
     { if ((appName=="Netscape")&&(parseInt(appVersion)==4)) 
        {
          document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; 
        }
     }
    else if(innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) 
     { location.reload(); }
 }

MM_reloadPage(true);
// -->


// The Array Function 
function makeArray(len) 
{ for(var i = 0; i < len; i++) this[i] = null;
  this.length = len;
}

// This is where the array of text is created.
ideas = new makeArray(28);
ideas[0] = "More people are killed annually by donkeys than die in air crashes.";
ideas[1] = "Mel Blanc (the voice of Bugs Bunny) was allergic to carrots."
ideas[2] = "More than 45,000 pieces of plastic debris float on every square mile of ocean."
ideas[3] = "Ten books on a shelf can be arranged in 3,628,800 different ways."
ideas[4] = "A teaspoon of neutron star material weighs about 110 million tons."
ideas[5] = "\"America will never be destroyed from the outside. If we falter and lose our freedoms, it will be because we destroyed ourselves.\" - Abraham Lincoln"
ideas[6] = "Children in America see, on average, 100,000 television ads by age 5; before they die they will see another two million."
ideas[7] = "There are more chickens than people in the world."
ideas[8] = "In 2002, marketers sent 87 billion pieces of junk mail, 51 billion telemarketing calls and 84 billion pieces of email spam."
ideas[9] = "In 2004, a Yankelovich poll found that 65 percent of Americans \"feel constantly bombarded with too much advertising and marketing.\""
ideas[10] = "\"If I could only go through the ducts and leap out onstage in a cape, that's my dream.\" - Ralph Nader, on the presidential debates"
ideas[11] = "\"It's just a job. Grass grows, birds fly, waves pound the sand.  I beat people up.\" - Muhammad Ali"
ideas[12] = "\"To be great is to be misunderstood.\" - Ralph Waldo Emerson"
ideas[13] = "\"There has been a lot of speculation, and I believe there will continue to be a lot of speculation until the speculation ends.\" - George W. Bush"
ideas[14] = "\"Be who you are and say what you feel, because those who mind don't matter, and those who matter don't mind.\" - Dr. Seuss"
ideas[15] = "\"If you never did you should. These things are fun and fun is good\" - Dr. Seuss"
ideas[16] = "\"Why of course the people don't want war... But after all it is the leaders of the country who determine the policy, and it's always a simple matter to drag the people along, whether it is a democracy or a fascist dictatorship... Voice or no voice, the people can always be brought to the bidding of the leaders. That is easy. All you have to do is tell them they're being attacked, and denounce the pacifists for lack of patriotism and exposing the country to danger.\" - Hermann Goering (Gestapo/Nazi leader), Nuremberg, 1946"
ideas[17] = "In 2004, 97 per cent of all known executions took place in China, Iran, Viet Nam and the USA"
ideas[18] = "\"Almost\" is the longest word in the English language with all the letters in alphabetical order." 
ideas[19] = "\"One thousand\" contains the letter A, but none of the words from one to nine hundred ninety-nine has an A."
ideas[20] = "\"We can't solve problems by using the same kind of thinking we used when we created them.\" - Albert Einstein" 
ideas[21] = "\"The first question I ask myself when something doesn't seem to be beautiful is why do I think it's not beautiful. And very shortly you discover that there is no reason.\" - John Cage"
ideas[22] = "\"The sixth sick sheik's sixth sheep's sick\" is said to be the toughest tongue twister in English." 
ideas[23] = "27% of Americans believe we never landed on the moon."
ideas[24] = "Charlie Chaplin once lost a Charlie Chaplin look-alike contest."
ideas[25] = "In 2007, there were 380 parts per million of carbon dioxide in the atmosphere, which exceeds the natural range of the past 650,000 years."
ideas[26] = "In Iraq 2007 was the deadliest year of the entire occupation for the U.S. military with 898 U.S. troops killed and a cost of 133.2 billion dollars."
ideas[27] = "According to a 2002 US Surgeon-General report, 61 per cent of Americans are significantly overweight. This obesity generates $117 billion in annual medical bills and triggers 300,000 premature deaths each year."



// The random number generator.
function rand(n) 
{ seed = (0x015a4e35 * seed) % 0x7fffffff;
  return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff


