
//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays, colums was 180 and images was 160

images = new Array(2);

images[0] = "<div id ='Column132b'><div class='boxBlank'> <img src='/msa/homepage/images/atlas1.jpg' alt='Atlas of Historical Maps of Maryland' width='132' height='67' class='imgC' /><h3><a href='/msa/intromsa/html/mapbook.html' title='Maryland Vital Records'>Atlas of Historical Maps of Maryland 1608-1908</a></h3><p>Maryland historical atlas contains beautiful, full-color reproductions of more than 250 historical maps.</p></div></div>";

images[1] = "<div id='Column132c'><div class='boxBlank'><img src='/msa/homepage/images/guide3.jpg' alt='Guide to History of Slavery' width='132' height='67' class='imgC' /><h3><a href='/msa/homepage/html/slaveryguide.html' title='Guide to History of Slavery'>Guide to History of Slavery in Maryland</a></h3><p>Aimed primarily at students &amp; teachers, the 40-page booklet provides an overview of slavery and its legacy in Maryland.</p></div></div>";

//images[2] = "<div id='Column132c'><div class='boxBlank'><img src='/msa/homepage/images/lincoln.jpg' alt='Lincoln in Annapolis' width='132' height='67' class='imgC' /><h3><a href='/msa/homepage/html/lincolninannap.html' title='Lincoln in Annapolis'>Lincoln in Annapolis</a></h3><p>The 48-page booklet describes the circumstances of Lincoln’s brief visits to Annapolis in February 1865.</p></div></div>";


index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done



