
			$(document).ready(function() {
				$("div#carosellofooter").smoothDivScroll({
					autoScroll: "always",  
					autoScrollDirection: "endlessloopright",
					autoScrollStep: 1, 
					autoScrollInterval: 55,
					visibleHotSpots: "always"
				});
				$("div#carosellofooter").mouseover(function() {
				      $("div#carosellofooter").smoothDivScroll("stopAutoScroll");
				}).mouseout(function(){
				      $("div#carosellofooter").smoothDivScroll("startAutoScroll");
				});
			});

