function RandomQuote()
{
 Num_Quotes = 10;
 random_num = (Math.round((Math.random()*Num_Quotes)+1));
 switch(random_num)
 {
  case 1   : QuoteArea.innerHTML = QuoteArea.innerHTML = "<p class='Quote'>'You can't depend on your eyes when your imagination is out of focus.' - Mark Twain</p>"; break;
  case 2   : QuoteArea.innerHTML = QuoteArea.innerHTML = "<p class='Quote'>'An artist cannot fail; it is a success to be one.' - Charles Horton</p>"; break;
  case 3   : QuoteArea.innerHTML = QuoteArea.innerHTML = "<p class='Quote'>'I saw the angel in the marble and I carved until I set him free.' - Michelangelo</p>"; break;
  case 4   : QuoteArea.innerHTML = QuoteArea.innerHTML = "<p class='Quote'>'An artist is someone who produces things that people don't need to have but that he - for some reason- thinks it would be a good idea to give them.' - Andy Warhol</p>"; break;
  case 5   : QuoteArea.innerHTML = QuoteArea.innerHTML = "<p class='Quote'>'Sometimes I've believed as many as six impossible things before breakfast.' - Lewis Carol</p>"; break;
  case 6   : QuoteArea.innerHTML = QuoteArea.innerHTML = "<p class='Quote'>'Art is the colors and textures of your imagination.' - Meghan, Los Cerros School</p>"; break;
  case 7   : QuoteArea.innerHTML = QuoteArea.innerHTML = "<p class='Quote'>'Things are only impossible until they're not.' - Jean-Luc Picard, Star Trek</p>"; break;
  case 8   : QuoteArea.innerHTML = QuoteArea.innerHTML = "<p class='Quote'>'A man paints with his brains and not with his hands.' - Michelangelo</p>"; break;
  case 9   : QuoteArea.innerHTML = QuoteArea.innerHTML = "<p class='Quote'>'I think the world really boils down to two types of people -  those who see shapes in cloud formations and those who just see clouds.' - Danzae Pace</p>"; break;
  case 10  : QuoteArea.innerHTML = QuoteArea.innerHTML = "<p class='Quote'>'Think left and think right and think low and think high . Oh, the thinks you can think up if only you try!' - Dr. Suess</p>"; break;
  default  : QuoteArea.innerHTML = QuoteArea.innerHTML = "<p class='Quote'>'You can't depend on your eyes when your imagination is out of focus.' - Mark Twain</p>";
 }
}