$(document).ready( function(){ 
/* Scroller */
	$("#imgscroll").scrollable({
		size: 1, 
		clickable: false,
		onLoad: function() { 
        	onBeforeSeek(function() { return false; }); // disables autoscroll 
		},
		onClose: function() { 
        	unbind("onBeforeSeek"); // reenables autoscroll 
		} 
	})
	.circular().autoscroll({ 
		steps: 1, 
		interval: 6000,
		autopause: true
	});});



