// JavaScript Document random

var Quotation=new Array() // do not change this!

Quotation[0] = "<img src='http://www.macwebsolutions.co.uk/img/latestwork2.jpg' alt='' /><br />The MCM Fire Co<br />Web Design";
Quotation[1] = "<img src='http://www.macwebsolutions.co.uk/img/latestwork3.jpg' alt='' /><br />Student Remix Awards<br />Web Design";
Quotation[2] = "<img src='http://www.macwebsolutions.co.uk/img/latestwork4.jpg' alt='' /><br />Evolution Dance<br />Web Design";
Quotation[3] = "<img src='http://www.macwebsolutions.co.uk/img/latestwork5.jpg' alt='' border='0' /></a><br />Nefertari Official<br />Web Design";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}