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] = "<a href=http://www.assayforum.org/ target=_blank><img src=http://i32.tinypic.com/vxyjbo.jpg></a>";
Quotation[1] = "<a href=http://royaltweakers.omgforum.net/ target=_blank><img src=http://i41.tinypic.com/10d5hcj.jpg></a>";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
