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