 //Home picture
    var cntFlash3 = 0;
    var speed3 = 6000;
    var fnShowFeature3 = function(jsthis3) {
    
      if ((typeof jsthis3) == 'undefined') { // slide show mode
        if (cntFlash3 < 0) return; // slide show stopped
        cntFlash3++;
        jsthis3 = $('#HomeseekIndex a[href=#HomePics_' + cntFlash3 + ']');
        if (jsthis3.length == 0) { // at the end, start again
          cntFlash3 = 0;
          jsthis3 = $('#HomeseekIndex a[href=#HomePics_' + cntFlash3 + ']');
        }
        setTimeout('fnShowFeature3()', speed3);
      } else { // user clicked so stop the slide show
        cntFlash3 = -1;
      }
      // Hide all images and unset the seekIndex selection
      $('#HomePicsList li').hide();
      $('#HomeseekIndex li').removeClass('navCurrent');
      
      // Show the selected image and highlight the seekIndex
      jsthis3.parent().addClass('navCurrent');
      var jsimgPan3 = $(jsthis3.attr('href'));
      jsimgPan3.fadeIn(500);
      jsimg3 = jsimgPan3.find('.featureImage3 a'); 
      jsimg3.css('background-image', 'url(' + jsimg3.attr('rel') + ')');
      
      return false;
    }
    // setup Click
    $('#HomeseekIndex a').click( function() { return fnShowFeature3($(this)) });
    
    // Setup Slide Show
    $(function(){
      setTimeout('fnShowFeature3()', speed3);
    });

