		$(window).load(function() {
			$("div#twitter").smoothDivScroll({autoScroll: "always", autoScrollDirection: "endlessloopright", autoScrollStep: 1, autoScrollInterval: 15});
			
			
			$("div#twitter").bind("mouseover", function(){
				$("div#twitter").smoothDivScroll("stopAutoScroll");
			});
			
			$("div#twitter").bind("mouseout", function(){
				$("div#twitter").smoothDivScroll("startAutoScroll");
			});
			
		});
