    $(function() {
      
      // setup ul.tabs to work as tabs for each div directly under div.panes
      $("#flashContent > ul.tabs").tabs("#flashContent > div.pane", 
        { 
        rotate: true,
        effect: 'fade',
        onBeforeClick: function(event, tabIndex) {
          //alert('event: '+event+', tabIndex: '+tabIndex);
          }
        }).slideshow(
          {
            autoplay: true,
            interval: 8000,
            autopause: false,
            clickable: false
          }
        );
    });