jQuery(document).ready(function($) {
    $('#footerText span').marquee().mouseover(function () {
        $(this).trigger('stop');
    }).mouseout(function () {
        $(this).trigger('start');
    });
});
