$(window).load(function() {
		$("div#makeMeScrollableBottom").smoothDivScroll({ autoScroll: "onstart", autoScrollDirection: "backandforth", autoScrollStep: 1, autoScrollInterval:45,visibleHotSpots: "always"});
		$("div#makeMeScrollableBottom").bind("mouseover", function() {
		$(this).smoothDivScroll("stopAutoScroll");
	}).bind("mouseout", function() {
		$(this).smoothDivScroll("startAutoScroll");
	});

});
