<!-- //This function controls the banners

function makeBnr()
{
   var numSites = 3; //The number of banners you will have
   var sec = 3600; //number of seconds between banner display
   var Number = Math.floor(numSites * Math.random());

   banners = new Array();     //add a line for each banner image
   banners[0] = "../images/home/marie.jpg";
   banners[1] = "../images/home/slegh.jpg";
   banners[2] = "../images/home/latimer.jpg";

   altTxt = new Array(); //This will serve as the alt and txt information
   	altTxt[0] = "Northwestern Brain Tumor Institute - Marie";
	altTxt[1] = "Northwestern Brain Tumor Institute - Slegh";
	altTxt[2] = "Northwestern Brain Tumor Institute - Latimer";

   // This section writes the HTML to the div named "banner" in the body
   document.getElementById("banner").innerHTML = "<img src='" + banners[Number] + "' alt='" + altTxt[Number] + "' border=0 width=185 height=301>";
   setTimeout("makeBnr()", sec*1000);
}   
   -->
