var Quotation=new Array() // do not change this!

Quotation[0] = "waterhouse1.jpg";
Quotation[1] = "leighton1.jpg";
Quotation[2] = "dicksee1.jpg";
Quotation[3] = "leighton3.jpg";
Quotation[4] = "leighton2.jpg";
Quotation[5] = "leighton4.jpg";
Quotation[6] = "dicksee2.jpg";
Quotation[7] = "dicksee3.jpg";
Quotation[8] = "waterhouse2.jpg";
Quotation[9] = "cabanel1.jpg";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation()
	{
		document.write("<img src=./randompics/"); 
		document.write(Quotation[whichQuotation]);
		document.write(">");

	}
showQuotation();