$(window).load(function() {
	$("div#makeMeScrollable").smoothDivScroll({ autoScroll: "always", autoScrollDirection: "endlessloopright", autoScrollStep: 1, autoScrollInterval: 60 });
														
	$("div#makeMeScrollable a").colorbox({speed:"200"});

	// Pause autoscrolling if the user clicks one of the images
	$("div#makeMeScrollable").bind("click", function() {
		$(this).smoothDivScroll("stopAutoScroll");
	});
	
	$("div#makeMeScrollable").bind("mouseover", function() {
		$(this).smoothDivScroll("stopAutoScroll");
	}).bind("mouseout", function() {
		$(this).smoothDivScroll("startAutoScroll");
	});
	
	// Start autoscrolling again when the user closes
	// the colorbox overlay
	$(document).bind('cbox_closed', function(){
		$("div#makeMeScrollable").smoothDivScroll("startAutoScroll");
	});
	
	
	
});
