var image="";
var banners=0;
var link = "/"

function cycle() {
  if (++banners > 6) banners=1;
    loadbanners();

    window.setTimeout('cycle();',8000);
  }

function loadbanners() {
   if (banners==1)
      {
	document.getElementById('homepic').className = 'home_pic_customerrange';
	document.getElementById('homebutton1').className = 'button_down';
	document.getElementById('homebutton2').className = 'button_up';
	document.getElementById('homebutton3').className = 'button_up';
	document.getElementById('homebutton4').className = 'button_up';
	document.getElementById('homebutton5').className = 'button_up';
	document.getElementById('homebutton6').className = 'button_up';
      }
   if (banners==2)
      {
	document.getElementById('homepic').className = 'home_pic_customerservice';
	document.getElementById('homebutton1').className = 'button_up';
	document.getElementById('homebutton2').className = 'button_down';
	document.getElementById('homebutton3').className = 'button_up';
	document.getElementById('homebutton4').className = 'button_up';
	document.getElementById('homebutton5').className = 'button_up';
	document.getElementById('homebutton6').className = 'button_up';
      }
   if (banners==3)
      {
	document.getElementById('homepic').className = 'home_pic_familyowned';
	document.getElementById('homebutton1').className = 'button_up';
	document.getElementById('homebutton2').className = 'button_up';
	document.getElementById('homebutton3').className = 'button_down';
	document.getElementById('homebutton4').className = 'button_up';
	document.getElementById('homebutton5').className = 'button_up';
	document.getElementById('homebutton6').className = 'button_up';
      }
   if (banners==4)
      {
	document.getElementById('homepic').className = 'home_pic_freesupport';
	document.getElementById('homebutton1').className = 'button_up';
	document.getElementById('homebutton2').className = 'button_up';
	document.getElementById('homebutton3').className = 'button_up';
	document.getElementById('homebutton4').className = 'button_down';
	document.getElementById('homebutton5').className = 'button_up';
	document.getElementById('homebutton6').className = 'button_up';
      }
   if (banners==5)
      {
	document.getElementById('homepic').className = 'home_pic_globalspan';
	document.getElementById('homebutton1').className = 'button_up';
	document.getElementById('homebutton2').className = 'button_up';
	document.getElementById('homebutton3').className = 'button_up';
	document.getElementById('homebutton4').className = 'button_up';
	document.getElementById('homebutton5').className = 'button_down';
	document.getElementById('homebutton6').className = 'button_up';
      }
   if (banners==6)
      {
	document.getElementById('homepic').className = 'home_pic_madeinusa';
	document.getElementById('homebutton1').className = 'button_up';
	document.getElementById('homebutton2').className = 'button_up';
	document.getElementById('homebutton3').className = 'button_up';
	document.getElementById('homebutton4').className = 'button_up';
	document.getElementById('homebutton5').className = 'button_up';
	document.getElementById('homebutton6').className = 'button_down';
      }
}
