var Quotation=new Array() // do not change this!
// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "<img src=\"../images/gallery/pic001.jpg\" width=\"125\" height=\"121\"><br>Internet Public Access Point <br> Photo by Rose Brasil";
Quotation[1] = "<img src=\"../images/gallery/pic002.jpg\" width=\"125\" height=\"121\"><br>School children in a remote Cambodian school where a pilot laptop program has been in place since 2001<br> Photo by Dimitri Negroponte";
Quotation[2] = "<img src=\"../images/gallery/pic003.jpg\" width=\"125\" height=\"121\"><br>A typical secondary school in Germany (1998)<br> Photo by Peng";
Quotation[3] = "<img src=\"../images/gallery/pic004.jpg\" width=\"125\" height=\"121\"><br>A classroom in Princeton University with permanently installed desk chairs and green chalkboards<br> Photo by Joseph Barillari";
Quotation[4] = "<img src=\"../images/gallery/pic005.jpg\" width=\"125\" height=\"121\"><br>A mathematics lecture at Helsinki Univeristy of Technology <br> Photo by Tungsten";
Quotation[5] = "<img src=\"../images/gallery/pic006.jpg\" width=\"125\" height=\"121\"><br>Student making a presentation<br> Photo by Jeanpol Martin";
Quotation[6] = "<img src=\"../images/gallery/pic007.jpg\" width=\"125\" height=\"121\"><br>Biochemistry lab at the University of Cologne<br> Photo by Magnus Manske";
Quotation[7] = "<img src=\"../images/gallery/pic008.jpg\" width=\"125\" height=\"121\"><br>Hong Kong students having a computer lesson.<br> Photo by Hong Kong interpretation of the British Crown copyright";
Quotation[8] = "<img src=\"../images/gallery/pic009.jpg\" width=\"125\" height=\"121\"><br>King's College, a prestigious secondary school in Hong Kong.<br> Photo by KC Cheung";


// ======================================

// Do not change anything below this line

// ======================================

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
if ((whichQuotation<0) || (whichQuotation>50)) {whichQuotation=2};
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();




