// JavaScript Document

<!--
// ==============================================
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "Our business is about technology, yes. But it's also about operations and customer relationships.<br><br><span class=bodyHeadNvyName>Michael Dell</span>";
Quotation[1] = "Information technology and business are becoming inextricably interwoven. I don't think anybody can talk meaningfully about one without the talking about the other.<br><br><span class=bodyHeadNvyName>Bill Gates</span>";
Quotation[2] = "A man who dares to waste one hour of life has not discovered the value of life.<br><br><span class=bodyHeadNvyName>Charles Darwin</span></span>";
Quotation[3] = "A market is never saturated with a good product, but it is very quickly saturated with a bad one.<br><br><span class=bodyHeadNvyName>Henry Ford</span>";
Quotation[4] = "It's much easier for me to make major life, multi-million dollar decisions, than it is to decide on a carpet for my front porch. That's the truth.<br><br><span class=bodyHeadNvyName>Oprah Winfrey</span>";
Quotation[5] = "I have found no greater satisfaction than achieving success through honest dealing and strict adherence to the view that, for you to gain, those you deal with should gain as well.<br><br><span class=bodyHeadNvyName>Alan Greenspan</span>";
Quotation[6] = "It is decidedly not true that nice guys finish last, as that highly original American baseball philosopher, Leo Durocher, was alleged to have said.<br><br><span class=bodyHeadNvyName>Alan Greenspan</span>";
Quotation[7] = "I think we're having fun. I think our customers really like our products. And we're always trying to do better.<br><br><span class=bodyHeadNvyName>Steve Jobs</span>";
Quotation[8] = "People first, then money, then things.<br><br><span class=bodyHeadNvyName>Suze Orman</span>";
Quotation[9] = "I feel that luck is preparation meeting opportunity.<br><br><span class=bodyHeadNvyName>Oprah Winfrey</span>";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();

//->