$(document).ready(function() {
	
	var _t = 7000;

	$('#gallery').cycle({
	    fx:      'scrollLeft', 
	    speed:    800, 
	    timeout:  _t 
	});
    
    $('#gallery li').click(
    	function(){
			$(this).children('img').show();
			$('#gallery').cycle('pause');
			setTimeout(function(){
				$('#gallery').cycle('resume');
			}, _t);	
			var clicky_custom = {};
			clicky_custom.goal = { name: 'Multiple Choice Pressed' };
    	}
    );



     
});



 

