
$(document).ready(function(){
	$('#new_slideshow').cycle({
	  cleartypeNoBg: true, 
	  sync: 1,
	  speed: 1000,
	  nowrap: true, 
	  timeoutFn: function(currElement, nextElement, opts, isForward) { 
	    return parseInt($(currElement).attr('data-duration'), 10);
	  }
	});
	$('#goto1').click(function() { 
	    $('#new_slideshow').cycle(0); 
	    return false; 
	});
});
