$j = jQuery.noConflict(); 

$j(document).ready(function(){

	$j("div#makeMeScrollable").smoothDivScroll({ 
		autoScroll: "onstart" , 
		autoScrollDirection: "backandforth", 
		autoScrollStep: 1, 
		autoScrollInterval: 15,	
		startAtElementId: "startAtMe", 
		visibleHotSpots: "always" 
	});

	$j("div#makeMeScrollable").bind("mouseover", function() {
		$j(this).smoothDivScroll("stopAutoScroll");
	}).bind("mouseout", function() {
		$j(this).smoothDivScroll("startAutoScroll");
	});

});

