<!-- //This function controls the banners

function makeBnr()
{
   var numSites = 9; //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/Leadership/Rosen_lab.jpg";
   banners[1] = "../Images/Leadership/platanias.jpg";
   banners[2] = "../Images/Leadership/licht.jpg";
   banners[3] = "../Images/Leadership/volpe.jpg";
   banners[4] = "../Images/Leadership/hendrix.jpg";
   banners[5] = "../Images/Leadership/khandekar.jpg";
   banners[6] = "../Images/Leadership/kletzel.jpg";
   banners[7] = "../Images/Leadership/schink.jpg";
   banners[8] = "../Images/Leadership/ohalloran.jpg";

   altTxt = new Array(); //This will serve as the alt and txt information
   	altTxt[0] = "Robert H. Lurie Comprehensive Cancer Center of Northwestern University - Steve Rosen, Director";
	altTxt[1] = "Robert H. Lurie Comprehensive Cancer Center of Northwestern University -  	Leonidas Platanias, Deputy Director";
	altTxt[2] = "Robert H. Lurie Comprehensive Cancer Center of Northwestern University - Jonathan D. Licht - Associate Director, Clinical Sciences ";
	altTxt[3] = "Robert H. Lurie Comprehensive Cancer Center of Northwestern University - Timothy Volpe - Associate Director, Administration";
	altTxt[4] = "Robert H. Lurie Comprehensive Cancer Center of Northwestern University - Mary Hendrix";
	altTxt[5] = "Robert H. Lurie Comprehensive Cancer Center of Northwestern University - Janardan D. Khandekar - Chairman, Department of Medicine, Evanston Northwestern Healthcare";
	altTxt[6] = "Robert H. Lurie Comprehensive Cancer Center of Northwestern University - Morris Kletzel - Chief, Hematology/Oncology, Children's Memorial Medical Center";
	altTxt[7] = "Robert H. Lurie Comprehensive Cancer Center of Northwestern University - Julian C. Schink, MD - Associate Director, Clinical Affairs";
	altTxt[8] = "Robert H. Lurie Comprehensive Cancer Center of Northwestern University - Tom O'Halloran - Associate Director, Basic Sciences";

   // 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);
}   
   -->
