// JavaScript Document

   var displayId = "bannerRotate";
   function selectit(id)
   {	
   	  document.getElementById(displayId).style.display = "none";
      document.getElementById(id).style.display = "block";
      displayId = id;
   }