  <!--  Banner PEUGEOT 4
  //http://www.daxassist.com/js/rotatingbanners.cfm
    //specify interval between rotating banners (in milli seconds)
  var currentlinkpeugeot4 = 0;
  var currentimagepeugeot4 = 0;
  var delay = 6000;
  var newbrowser = false;
	
  //specify banners
  if(document.images) {
    banpicspeugeot4 = new Array();	
    banpicspeugeot4[0] = new Image();
    banpicspeugeot4[0].src = "/images/special-offers/banners/peugeot/peugeot-308-130110.jpg";
		
    //specify banner links
    banlinkspeugeot4 = new Array();	
	banlinkspeugeot4[0] = "/new-cars/peugeot/peugeot-308.shtml";
  }		
			
  function bannerchangerpeugeot4(from) {
    if(document.images) {
      document.images[from].src = banpicspeugeot4[currentimagepeugeot4].src;
      currentlinkpeugeot4 = currentimagepeugeot4;			
      if (currentimagepeugeot4 < banpicspeugeot4.length-1) 
        currentimagepeugeot4 = currentimagepeugeot4 + 1;
      else 
        currentimagepeugeot4 = 0;
      setTimeout("bannerchangerpeugeot4('" + from + "')", delay);
    }
  }
	
  function FollowLinkpeugeot4() {
    if(document.images) {
      if (newbrowser == true) {
        window.open(banlinkspeugeot4[currentlinkpeugeot4], 'newwindow', '', true);			
      } else
        document.location.href = banlinkspeugeot4[currentlinkpeugeot4];
    }
  }
	
  //-->
