$(document).ready(function () {
    // register badge animation
    $('.CTA_reward').mouseover(function () {
        var i = 0;
        for (i = 0; i <= 5; i++) {
            $('.reward_arrow').animate({ 'top': '85px' }, '500').delay(50).animate({ 'top': '68px' }, '500');
        }
    });
    $('.CTA_register').mouseover(function () {
        var i = 0;
        for (i = 0; i <= 5; i++) {
            $('.register_arrow').animate({ 'top': '85px' }, '500').delay(50).animate({ 'top': '68px' }, '500');
        }
    });
    /* results page info panel animation */ 
    $('.info_panel').mouseover(function () { $(this).stop().animate({ 'height': '64px' }, 250); });
    $('.info_panel').mouseout(function () { $(this).stop().animate({ 'height': '23px' }, 250); });
    $(".disabled").replaceWith(function () { return "<span class=\"disabled\">" + $(this).text() + "</span>"; });
});
