  <!--  Banner 1
  //http://www.daxassist.com/js/rotatingbanners.cfm
    //specify interval between rotating banners (in milli seconds)
  var currentlink1 = 0;
  var currentimage1 = 0;
  var delay = 4000;
  var newbrowser = false;
	
  //specify banners
  if(document.images) {
    banpics1 = new Array();	
	banpics1[0] = new Image();
    banpics1[0].src = "/images/promotions/banners/motability/alfa-motability-180809.jpg";	
	banpics1[1] = new Image();
    banpics1[1].src = "/images/promotions/banners/motability/ford-motability-180809.jpg";	
	banpics1[2] = new Image();
    banpics1[2].src = "/images/promotions/banners/motability/peugeot-motability-180809.jpg";	
	banpics1[3] = new Image();
    banpics1[3].src = "/images/promotions/banners/motability/vauxhall-motability-180809.jpg";
		
    //specify banner links
    banlinks1 = new Array();	
    banlinks1[0] = "";
	banlinks1[1] = "";
	banlinks1[2] = "";
	banlinks1[3] = "";
  }		
			
  function bannerchanger1(from) {
    if(document.images) {
      document.images[from].src = banpics1[currentimage1].src;
      currentlink1 = currentimage1;			
      if (currentimage1 < banpics1.length-1) 
        currentimage1 = currentimage1 + 1;
      else 
        currentimage1 = 0;
      setTimeout("bannerchanger1('" + from + "')", delay);
    }
  }
	
  function FollowLink1() {
    if(document.images) {
      if (newbrowser == true) {
        window.open(banlinks1[currentlink1], 'newwindow', '', true);			
      } else
        document.location.href = banlinks1[currentlink1];
    }
  }
	
  //-->
