  <!--  Small smallfocus Banner - BANNER 1
  //http://www.daxassist.com/js/rotatingbanners.cfm
    //specify interval between rotating banners (in milli seconds)
  var currentlinksmallfocus = 0;
  var currentimagesmallfocus = 0;
  var delay = 6000;
  var newbrowser = false;
	
  //specify banners
  if(document.images) {
    banpicssmallfocus = new Array();
	banpicssmallfocus[0] = new Image();
    banpicssmallfocus[0].src = "/images/banners/small/focus-cc-070510.jpg";
	banpicssmallfocus[1] = new Image();
    banpicssmallfocus[1].src = "/images/banners/small/focus-cc-diesel-070510.jpg";	
		
    //specify banner links
    banlinkssmallfocus = new Array();	
	banlinkssmallfocus[0] = "/new/ford/focus-cc/cc2.aspx";
	banlinkssmallfocus[1] = "/new/ford/focus-cc/cc2-diesel.aspx";	
  }		
			
  function bannerchangersmallfocus(from) {
    if(document.images) {
      document.images[from].src = banpicssmallfocus[currentimagesmallfocus].src;
      currentlinksmallfocus = currentimagesmallfocus;			
      if (currentimagesmallfocus < banpicssmallfocus.length-1) 
        currentimagesmallfocus = currentimagesmallfocus + 1;
      else 
        currentimagesmallfocus = 0;
      setTimeout("bannerchangersmallfocus('" + from + "')", delay);
    }
  }
	
  function FollowLinksmallfocus() {
    if(document.images) {
      if (newbrowser == true) {
        window.open(banlinkssmallfocus[currentlinksmallfocus], 'newwindow', '', true);			
      } else
        document.location.href = banlinkssmallfocus[currentlinksmallfocus];
    }
  }
	
  //-->
