// When the DOM is ready...
        $(document).ready(function()
            {
                scrollStart();
                
                $(".scrollme").hover(
                    function() { 
                        scrollStop(); 
                    },
                    function() { 
                        scrollResume();
                    }
                ); 
            }
        );   
        // START THE SCROLLING
        function scrollStart()
        {
            scroll_length = ($(".scrollme").width() * -1)
            $(".scrollme").css("margin-left", "577px");
            $(".scrollme").animate(
                {marginLeft: scroll_length},
                45000,
                '', 
                function() { scrollStart(); }
                );
        }
        // KEEP SCROLLING
        function scrollResume()
        {
            $(".scrollme").animate(
                {marginLeft: scroll_length},
                45000,
                '', 
                function() { scrollStart(); }
                );
        }
        // STOP THE SCROLLING        
        function scrollStop()
        {
            $(".scrollme").stop();
        }