$(function() {
			$("div#makeMeScrollable").smoothDivScroll({ autoScroll: "onstart", autoScrollDirection: "endlessloopright", autoScrollStep: 1, autoScrollInterval: 50, startAtElementId: "startAtMe"});
			
			$("div#makeMeScrollable").bind("mouseover", function() {
		$(this).smoothDivScroll("stopAutoScroll");
	}).bind("mouseout", function() {
		$(this).smoothDivScroll("startAutoScroll");
	});

			
		});
