var Quotation=new Array()

Quotation[0] = "/image/mainimage_entry1.jpg";
Quotation[1] = "/image/mainimage_entry2.jpg";
Quotation[2] = "/image/mainimage_entry3.jpg";
Quotation[3] = "/image/mainimage_entry4.jpg";
Quotation[4] = "/image/mainimage_entry5.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="Microsoft Dynamics NAV, Dynamics AX and Dynamics CRM Gold Certified Partner">');}
showQuotation();
