// JavaScript Document
<!--
var Quotation=new Array() 
Quotation[0] = "Always design a thing by<br />considering it in its next larger context";
Quotation[1] = "It is impossible to design a system so perfect<br />that no one needs to be good";
Quotation[2] = "Basically, we've got to<br />innovate and differentiate";
Quotation[3] = "The true creator is necessity,<br />who is the mother of our invention";
Quotation[4] = "Without change there is no innovation,<br />creativity, or incentive for improvement";
Quotation[5] = "Business has only two functions<br />- marketing and innovation";
Quotation[6] = "Innovation distinguishes between<br />a leader and a follower";
Quotation[7] = "Creativity is a natural extension<br />of our enthusiasm";
Quotation[8] = "Creativity is not the finding of a thing,<br />but the making something out of it after it is found";
Quotation[9] = "Technical skill is mastery of complexity,<br />while creativity is mastery of simplicity";


var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
//-->