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