function setup() {
		//alert('funz home');
$("#scroller").scrollable({vertical:true,circular:true}).autoscroll({interval:5000}); // all your nice code ...
}

if (!/WebKit/i.test(navigator.userAgent)) {
	jQuery(function($){ 
		setup();
	});
} else {
	// work around WebKit loading bug
	jQuery(window).load(setup);
}
	

