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