<!--




  if (navigator.appName == "Microsoft Internet Explorer") {

    var slideShowSpeed = 3500;

    // Duration of crossfade (seconds)
    var crossFadeDuration = 3.5;

    // Specify the image files

    var t;
    var j = 0;
    var p = Pic.length;

    var preLoad = new Array();
    for (i = 0; i < p; i++){
       preLoad[i] = new Image();
       preLoad[i].src = Pic[i];
    }

    //run
    runSlideShow();

  } else {
    var c=0;
    function timedCount()
    {
      if(c<(Pic.length-1)){
        c++;
      }else{
        c=0;
      }
      crossfade(document.getElementById("SlideShow"),Pic[c],1.6,"pond design dorset, natural swimming pools, floating fountains, eco pools, pond landscaping");
      setTimeout("timedCount()",3500);
    }


    //cache the images
    ixf.imgsLen = Pic.length;
    ixf.cache = [];
    for(var i=0; i<ixf.imgsLen; i++)
    {
      ixf.cache[i] = new Image;
      ixf.cache[i].src = Pic[i];
    }

    //run
    setTimeout("timedCount()",3500);
  }

//-->