<!--
function rand_img() {
	var imgs = new Array();
	imgs[0] = "Midwest/MikesMusic.gif"
	imgs[1] = "Midwest/ColumbiaBank.gif"
	imgs[2] = "Midwest/Malley.gif"
	imgs[3] = "Midwest/LaurelMainStreetPharmacy.gif"
	imgs[4] = "Midwest/Kohen.gif"
	imgs[5] = "Midwest/bwfa_logo.gif"
	imgs[6] = "Midwest/Cooper.gif"
	imgs[7] = "Midwest/SandySpring.gif"
	imgs[8] = "Midwest/QoS.gif"
	imgs[9] = "Midwest/CharterDeli.gif"
	imgs[10] = "Midwest/SESolutions.jpg"
	imgs[11] = "Midwest/Gochar.gif"
	imgs[12] = "Midwest/BaltimoreBrass.jpg"
	imgs[13] = "Midwest/MusicandArts.gif"
	imgs[14] = "Midwest/annaelliott.jpg"
	imgs[15] = "Midwest/AHS.jpg"
	imgs[16] = "Midwest/Roots.jpg"
	imgs[17] = "Midwest/Anonymonus.gif"
	
	document.getElementById("image").src = imgs[Math.floor(Math.random()*imgs.length)];
}
setInterval("rand_img()", 3000);
//-->
