function infomove(_fontId){
		this.emId   	= _fontId + "_side";
		this.btmId   	= _fontId + "_btn";
		var 
			  obj		= jQuery("#" + this.emId),
			  objBtm	= jQuery("#" + this.btmId),
			  btmPlay	= objBtm.find(".play"),
			  btmPause  = objBtm.find(".pause"),
			  objW		= obj.width(),
			  timerid	= -1;

		this.inits= function(){
			try{

				for(var a=0;a<3;a++){
					obj.append("　<li>"+jQuery(obj.find("li")[a]).html()+"</li>");
				}
				btmPlay.bind("click",function(){funPlay()});
				btmPause.bind("click",function(){funPause()});
				
				obj.find("li a").bind("mouseover",function(){funPause()}).bind("mouseout",function(){funPlay()});
				funPlay();
			}catch(ex){}
		}
		
		function funPlay(){
			clearInterval(timerid);
			timerid = setInterval(moveli,70);
		}
		function moveli(){
			var t= obj.css("left");
			t = parseInt(t)-1;
			if(t<=-objW) t =0;
			obj.css("left",t+"px")
		
		}
		function funPause(){
			clearInterval(timerid);
		}
	}
