var Quotation=new Array()

Quotation[0] = "/image/mainimage_equipment1.jpg";
Quotation[1] = "/image/mainimage_equipment2.jpg";
Quotation[2] = "/image/mainimage_equipment3.jpg";
Quotation[3] = "/image/mainimage_equipment4.jpg";
Quotation[4] = "/image/mainimage_equipment5.jpg";
Quotation[5] = "/image/mainimage_equipment6.jpg";
Quotation[6] = "/image/mainimage_equipment7.jpg";
Quotation[7] = "/image/mainimage_equipment8.jpg";
Quotation[8] = "/image/mainimage_equipment9.jpg";
Quotation[9] = "/image/mainimage_equipment10.jpg";
Quotation[10] = "/image/mainimage_equipment11.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="WCI Dynamics RentalPro">');}
showQuotation();