We've been spending long hours in order to launch our new website, so that our valued patients will be able to order anywhere, at anytime. You'll be able to try on virtual glasses, order premium contact lenses and earn Lasik Rewards that can be used nationally with our affiliate eye care surgeons. Join our mailing list & follow us on Facebook or Twitter to stay up to date.
Don't worry. We don't like spam either!
      jQuery(function($){
        $("#ticker").tweet({
          username: "idocusa",
          page: 1,
          avatar_size: 0,
          count: 20,
          loading_text: "loading ..."
        }).bind("loaded", function() {
          var ul = $(this).find(".tweet_list");
          var ticker = function() {
            setTimeout(function() {
              var top = ul.position().top;
              var h = ul.height();
              var incr = (h / ul.children().length);
              var newTop = top - incr;
              if (h + newTop <= 0) newTop = 0;
              ul.animate( {top: newTop}, 500 );
              ticker();
            }, 4000);
          };
          ticker();
        });
      });