/*
---------------------------------------------------
NOTE:
- jQuery and jQuery.cycle plugin required
USAGE:
-
---------------------------------------------------
*/
$(function() {
	$("div#makeMeScrollable").smoothDivScroll({
		autoScroll: "always",
		autoScrollDirection: "endlessloopright",
		autoScrollStep: 1,
		autoScrollInterval: 15,
		startAtElementId: "startAtMe"
	});
	$("div#makeMeScrollable").bind("mouseover", function() {
		$(this).smoothDivScroll("stopAutoScroll");
	}).bind("mouseout", function() {
		$(this).smoothDivScroll("startAutoScroll");
	});
});
