
//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(5);

images[0] = "<div id ='Column132b'><div class='boxBlank'> <img src='/msa/homepage/images/stills28fugitives1.jpg' alt='Image Depicting Twenty-Eight Fugitives Escaping from the Eastern Shore of Maryland, from William Still' width='132' height='67' class='imgC' /><h3><a href='http://www.mdslavery.net/' title='Study of the Legacy of Slavery in Maryland'>Study of the Legacy of Slavery in Maryland</a></h3><p>This program seeks to preserve and promote the lives of Maryland's African American population.</p></div></div>";

images[1] = "<div id='Column132c'><div class='boxBlank'><img src='/msa/homepage/images/land_rec.jpg' alt='Maryand Land Records' width='132' height='67' class='imgC' /><h3><a href='http://mdlandrec.net/' title='Maryland Land Records'>Maryland Land Records</a></h3><p>A Digital Image Retrieval System for Maryland Land Records. </p></div></div>";

images[2] = "<div id='Column132c'><div class='boxBlank'><img src='/msa/homepage/images/trans11_1.jpg' alt='Vital Records' width='132' height='67' class='imgC'/><h3><a href='http://mdvitalrec.net/' title='Vital Records'>Maryland Vital Records</a></h3><p>These include birth, adoption, marriage, divorce and death records.</p></div></div>";

images[3] = "<div id='Column132c'><div class='boxBlank'><img src='/msa/homepage/images/plato.jpg' alt='Plats.net' width='132' height='67' class='imgC'/><h3><a href='http://plats.net/' title='Plats.net'>Plats.net </a></h3><p>Digital Image Reference System for Land Survey, Subdivision, and Condominium Plats.</p></div></div>";

images[4] = "<div id='Column132c'><div class='boxBlank'><img src='/msa/homepage/images/sthse.jpg' alt='Maryland State House' width='132' height='67' class='imgC'/><h3><a href='/msa/mdstatehouse/html/home.html' title='Maryland State House'>Maryland State House </a></h3><p>The oldest state capitol still in continuous legislative use and is the only state house to have ever served as the nation's capitol.</p></div></div>";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done



