var Quotation=new Array()

Quotation[0] = "/image/header.jpg";
Quotation[1] = "/image/header2.jpg";
Quotation[2] = "/image/header3.jpg";
Quotation[3] = "/image/header4.jpg";


var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
var imgSrc;
function showQuotation(){
	imgSrc = (Quotation[whichQuotation]);
	document.write('<img src='+imgSrc+' alt="Phillips Enterprises" width="770" height="250" border="0" usemap="#Map">');}
showQuotation();