   //promoButtons
    var cntFlash = 0;
    var speed = 10000;
    var fnShowFeature = function(jsthis) {
    
      if ((typeof jsthis) == 'undefined') { // slide show mode
        if (cntFlash < 0) return; // slide show stopped
        cntFlash++;
        jsthis = $('#seekIndex a[href=#EventFeature_' + cntFlash + ']');
        if (jsthis.length == 0) { // at the end, start again
          cntFlash = 0;
          jsthis = $('#seekIndex a[href=#EventFeature_' + cntFlash + ']');
        }
        setTimeout('fnShowFeature()', speed);
      } else { // user clicked so stop the slide show
        cntFlash = -1;
      }
      // Hide all images and unset the seekIndex selection
      $('#promoButtonsList li').hide();
      $('#seekIndex li').removeClass('navCurrent');
      
      // Show the selected image and highlight the seekIndex
      jsthis.parent().addClass('navCurrent');
      var jsimgPan = $(jsthis.attr('href'));
      jsimgPan.fadeIn(600);
      jsimg = jsimgPan.find('.featureImage a'); 
      jsimg.css('background-image', 'url(' + jsimg.attr('rel') + ')');
      
      return false;
    }
    // setup Click
    $('#seekIndex a').click( function() { return fnShowFeature($(this)) });
    
    // Setup Slide Show
    $(function(){
      setTimeout('fnShowFeature()', speed);
    });

