
var wordArray = new makeArray
('&quot;Sadly, the Valley is full of such self-important billionaires<br>who have confused luck with brilliance and reaped<br>the monetary, social, and cultural benefits as a result.&quot;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;-- Unknown', 

'&quot;There is nothing either good or bad, but thinking makes it so.&quot;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;-- Bill Shakespeare', 

'&quot;Life is dyed the color of one\'s imagination.&quot;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;-- Marcus Aurelius',

'&quot;Life is a tale, told by an idiot<br>full of sound and fury<br>signifying nothing...&quot; <br><br>&nbsp;&nbsp;&nbsp;&nbsp;-- Bill Shakespeare',

'&quot;Life is what happens to you while you\'re busy making other plans.&quot;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;-- John Lennon',

'&quot;Every man has a train of thought he travels on.<br> His life depends on the path that train takes, <br>the baggage it carries, and the scenery <br>through which it travels.&quot;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;-- Unknown',

'&quot;If you call yourself a Designer, quit design, take up a new occupation (like tax auditor), buy some non-black clothes, normal-sized glasses, burn your AIGA card, and do design only as a hobby for awhile. Seriously.&quot;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;-- Eric Eaton',

'&quot;When the final design seems too simple for the amount<br>of work you\'ve put in, then you know you\'re done.&quot;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;-- Brady Clark (Hotwired Designer)');

function makeArray(){
this.length = makeArray.arguments.length
for (var i = 0; i < this.length; i++)
this[i + 1] = makeArray.arguments[i]
}

function randNum (num) {
var now = new Date();
var rand = Math.round(num * Math.cos(now.getTime()));
if (rand < 0) rand = - rand; if (rand == 0) rand++;
return rand;
}
