
  function PanoramaSlide(path, active)
  { var time = 3000;
    var max  = 9;
    var next = active+1; 
    if( next > max ) next = 1;
    if( document.getElementById('panorama') )
    { document.getElementById('panorama').src = path+'default_'+next+'.jpg';
      window.setTimeout("PanoramaSlide('"+path+"', "+next+")", time);
    } 
  }
