var scrolltext = true;
jQuery(document).ready(function(){
    $("#scrollwrapper")
        .scrollable({easing:"linear", speed: 3000, vertical: true, circular: true})
        .autoscroll(5000)
        .hover(function(){
                if(scrolltext == true) {
                    $("#scrollwrapper").data("scrollable").pause();
                    $("#textup").stop();
                };
            }, function(){
                if(scrolltext == true) {
                    $("#scrollwrapper").data("scrollable").play();
                    $("#scrollwrapper").data("scrollable").next();
                };
            });
    $(".portletRssStop").click(function(){
        scrolltext = false;
        $("#scrollwrapper").data("scrollable").pause();
        $("#textup").stop();
        $(".portletRssStop").addClass("active");
        $(".portletRssStart").removeClass("active");
        return false;
    });
    $(".portletRssStart").click(function(){
        scrolltext = true;
        $("#scrollwrapper").data("scrollable").play();
        $("#scrollwrapper").data("scrollable").next()
        $(".portletRssStart").addClass("active");
        $(".portletRssStop").removeClass("active");
        return false;
    });
});

