$(document).ready(function() {

    $("ul#ticker01").liScroll({travelocity: 0.15});
    
    $(".point").hover(
        function () {
            $(this).addClass("pointhover");
        },
        function () {
            $(this).removeClass("pointhover");
        }
    );

});
