
	$(document).ready(function(){	
		$("#hodo_footer").floatdiv({"left":"0px","bottom":"0px"});



		function hodo_mm(){
			$("#scroll_footer").find("ul:first").animate({
					"margin-top":"-20px"
				},500,function(){
					$(this).css({"margin-top":"0px"}).find("li:first").appendTo(this);
				});
		}
		move=setInterval(hodo_mm,3000);	
		$("#scroll_footer").hover(function(){
			clearTimeout(move);
		},function(){
			move=setInterval(hodo_mm,3000);
		});
		
		$("#right_btnfooter").click(function(){
			clearTimeout(move);

			$("#scroll_footer").find("ul:first").animate({
					"margin-top":"-20px"
				},500,function(){
					$(this).css({"margin-top":"0px"}).find("li:first").appendTo(this);
				});
			move=setInterval(hodo_mm,3000);
			
			
		});
		$("#left_btnfooter").click(function(){
			clearTimeout(move);
			$("#scroll_footer").find("ul:first").animate({
					"margin-top":"20px"
				},500,function(){
					$(this).css({"margin-top":"0px"}).find("li:last").prependTo(this);
				});
			
				move=setInterval(hodo_mm,3000);

		})
		
	});

