var image="";
var banners=0;

function cycle() {
  if (++banners > 5) banners=0;
    loadbanners();

    window.setTimeout('cycle();',8000);
  }

function loadbanners() {
	if (banners==0)
   {
	document.getElementById('bannerlink').href= "http://vitaip.com/index.html";
	crossfade(document.getElementById('banner1'), '/RotatingImages/rotating1.png', '2', '');
      }
   if (banners==1)
   {
	document.getElementById('bannerlink').href= "http://vitaip.com/index.html";
	crossfade(document.getElementById('banner1'), '/RotatingImages/rotating2.png', '2', '');
      }
   if (banners==2)
      {
	document.getElementById('bannerlink').href= "http://vitaip.com/index.html";
   crossfade(document.getElementById('banner1'), '/RotatingImages/rotating3.png', '2', '');
      }	  
   if (banners==3)
      {
	document.getElementById('bannerlink').href= "http://vitaip.com/index.html";
	crossfade(document.getElementById('banner1'), '/RotatingImages/rotating4.png', '2', '');
      }
   if (banners==4)
      {
	document.getElementById('bannerlink').href= "http://vitaip.com/index.html";
   crossfade(document.getElementById('banner1'), '/RotatingImages/rotating5.png', '2', '');
	  }
}


