    <!--
      var current_image = 2;
		
	var timer = false;
	var timeout = false;
	
	function setTimer(){
		timer = setInterval(function(){
			$('#num_' + current_image).trigger('click').parent().trigger('click');	

			current_image = current_image+1;
			
			if(current_image > 8){
				current_image = 1;
			}
			
		}, 6000);
	}
	
	
	var max_length = 85;
	
    $(document).ready(function() { 
	    $("#gallery_one").slideView();	
	    setTimer();	    
		
		$('.stripTransmitter a').mousedown(function(){
			clearInterval(timer);
			clearTimeout(timeout);
			
			current_image = parseInt($(this).text())+1;
			
			if(current_image > 8){
				current_image = 1;
			}
			
			timeout = setTimeout(function(){
				setTimer();
			}, 5000);
		});
	}); 
    //-->

