// JavaScript Document

var Quote=new Array() // do not change this!

Quote[0] = "Get <strong>off</strong> the Internet!";
Quote[1] = "The camera is your <strong>eye</strong>.";
Quote[2] = "<strong>I l l u s i o n</strong>";
Quote[3] = "I don't make <strong>excuses</strong> for my photographs.";
Quote[4] = "I take a picture because I <strong>see</strong> it.";

var Q = Quote.length;
var whichQuote=Math.round(Math.random()*(Q-1));
function showQuote(){document.write(Quote[whichQuote]);}
