var image="";
var banners=0;
function cycle() {
  if (++banners > 3) banners=1;
    loadbanners();
    document.banner1.src = image;
    window.setTimeout('cycle();',5000);
  }

//The last banner in the list is the first banner to load, then it returns to the top of the list.

function loadbanners() {
   if (banners==1)
      {
      image="http://www.reddingbankofcommerce.com/UserFiles/Image/Mobile%20App%20web.JPG";
      }
   if (banners==2)
      {
      image="http://www.reddingbankofcommerce.com/UserFiles/Image/sharelove_billboard.jpg";
      }
   if (banners==3)
      {
      image="http://www.reddingbankofcommerce.com/UserFiles/Image/mycard_new.jpg";
      }
}



//The URLs below correspond to the banners above. The initial var link in the first line needs
//to be the URL for the first banner.

var link = "default.aspx?v=d1182163-a48c-4e2d-9551-f2171df7c9de"
function urlswitch() {
if (banners==1)
{
link = "default.aspx?v=250375f9-f2ab-40ea-9c06-02fd9cc59df2";
}
if (banners==2)
{
link = "default.aspx?v=51c9ada7-25c5-4043-a9d7-91324c730a82";
}
if (banners==3)
{
link = "default.aspx?v=d1182163-a48c-4e2d-9551-f2171df7c9de";
}
return link;
}

