
$(document).ready(function() {
	$("div#makeMeScrollable").smoothDivScroll({ autoScroll: "onstart", 
										autoScrollDirection: "endlessloopright",
										autoScrollStep: 1,
										autoScrollInterval: 15,
										startAtElementId: "startAtMe" });
			
		});

function stopScroll() {
	$(function() {
		$("div#makeMeScrollable").smoothDivScroll("stopAutoScroll");
		
		});
}
function startScroll() {
	$(function() {
		$("div#makeMeScrollable").smoothDivScroll("startAutoScroll");
		
		});
}
