function loadButtonEffects(){
    $('.div_button').find('em').hide();
    $('.div_button').find('a').hover(function(){
        $(this).css({'background-position':'bottom'}).animate({
            'filter':'alpha(opacity=50)',
            'opacity': '0.5',
            '-moz-opacity':'0.5'
        }, 50, function(){
            $(this).animate({
                'filter':'alpha(opacity=100)',
                'opacity': '1',
                '-moz-opacity':'1'
            }, 100, function(){
                $(this).parent().find('em').show(1, function(){
                    $(this).animate({
                        'filter':'alpha(opacity=100)',
                        'opacity': '1.0',
                        '-moz-opacity':'1.0',
                        'top':'-111px'
                    }, 150, function(){
                        $(this).animate({
                            'top':'-121px'
                        }, 50);
                    });
                });
            });
        });
    }, function(){
        $(this).parent().find('a').css({'background-position':'top'}).parent().find('em').animate({
            'top':'-111px'
        }, 50, function(){
            $(this).animate({
                'filter':'alpha(opacity=0)',
                'opacity': '0',
                '-moz-opacity':'0',
                'top':'-140px'
            }, 150, function(){
                $(this).hide();
            });
        });
    });
    $('.div_button').find('a').colorbox();
}