// 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 />Essjay Designs Ltd<br />Web Design";
Quotation[1] = "<img src='http://www.macwebsolutions.co.uk/img/latestwork4.jpg' alt='' /><br />Evolution Dance<br />ReBranding";
Quotation[2] = "<a href='http://www.hotchocolateofficial.com/?macwebsolutions' target='_blank'><img src='http://www.macwebsolutions.co.uk/img/latestwork5.jpg' alt='' border='0' /></a><br />Hot Choclate Offical<br />Web Design";
Quotation[3] = "<a href='http://www.amaschildren.com/?macwebsolutions' target='_blank'><img src='http://www.macwebsolutions.co.uk/img/latestwork6.jpg' alt='' border='0' /></a><br />Amas Children<br />Charity Web Design";

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