$(function() {
			// Dock initialize
			bindCycle();
			
			jQuery("#Prev").click(function() {
						$.fn.cycleOpts.fx = "scrollRight";
						jQuery("#RunPrev").click();
					});
			jQuery("#Next").click(function() {
						$.fn.cycleOpts.fx = "scrollLeft";
						jQuery("#RunNext").click();
					});
		});
var bounds = new Array();
function bindCycle() {
	jQuery("#categories").cycle({
				fx : 'scrollLeft',
				speed : 1000,
				timeOut: 6000,
				next : '#RunNext',
				prev : '#RunPrev',
				pause: 1,
				fix : 1,
				after : onAfter
			});
	$('#categories').cycle('pause');
}

function onAfter() {
	
}
