$(document).ready(function() {
  //$("#textticker ul").hide();
  width = $("#textticker ul").width();
  
  function ticker() {
    $("#textticker ul").css("left","908px");
    $("#textticker ul").animate({left: "-" + width},20000,"linear",function() {
        ticker()
      });
  }
  
  ticker();
});
