// Advanced Random Quotes Start

  var q,quote= new Array();
  quote[quote.length]="<p>&quot;...contentment alone is the best way to happiness. Therefore, acquire contentment.&quot;</p><p style='margin-top: 3px;' class='quote-author'>Swami Sivananda</p>";
  quote[quote.length]="<p>&quot;Make it simple. Make it memorable. Make it inviting to look at. Make it fun to read.&quot;</p><p style='margin-top: 3px;' class='quote-author'>Leo Burnett</p>";
  quote[quote.length]="<p>&quot;Experience is one thing you can't get for nothing.&quot;</p><p style='margin-top: 3px;' class='quote-author'>Oscar Wilde</p>";
  quote[quote.length]="<p>&quot;A satisfied customer is the best business strategy of all.&quot;</p><p style='margin-top: 3px;' class='quote-author'>Michael Leboeuf</p>";
  quote[quote.length]="<p>&quot;Information is the seed for an idea, and only grows when it's watered.&quot;</p><p style='margin-top: 3px;' class='quote-author'>Heinz V. Bergen</p>";
  quote[quote.length]="<p>&quot;The basic need of the human heart in nearly every great crisis - a good hot cup of coffee.&quot;</p><p style='margin-top: 3px;' class='quote-author'>Alexander King</p>";
  q=parseInt(Math.random()*quote.length);
  q=(isNaN(q))?0:q;
    document.write(quote[q]);

// Advanced Random Quotes End