( function($) {
    // we can now rely on $ within the safety of our “bodyguard” function
    
	$(document).ready(function() {
		try {
			var root = $("#scroller").scrollable({circular: true}).autoscroll({ autoplay: false, interval: 10000 });
			$("#casescroller").scrollable({circular: true}).autoscroll({ autoplay: false });
			//$("#scroller").scrollable({circular: true});
		
			var api = root.data("scrollable");
		
			if (api.getSize() > 1)
				api.play();
			} 
			catch (e) { };
	});
	
} ) ( jQuery );