
	  var theLinks;
      var nCount = 0;
      var theTimerID;
	  var delay = cfg_delay;
      function init(){
          $("div#slideshow").slideView();
          theLinks = jQuery('#stripTransmitter0 a');
		  theTimerID = setTimeout("autoSlide()", delay);
      }
      function autoSlide(){
           jQuery.each(theLinks, function(i){
           if(jQuery(this).hasClass('current')){
              jQuery(theLinks[((i+1 < theLinks.length) ? (i+1) : 0)] ).trigger("click");
              return false;
          }
        });
      }
      $(window).bind("load", function() {
		$("div#slideshow").slideView();
      });
	  $(window).bind("load", init);
