$(document).ready(function() {
    $('.movie-attribute-image').hover(
        function () {
            $(this).next('.movie-attribute-label').stop(true, true).animate({opacity: 'show'}, 'normal');
        },
        function () {
            $(this).next('.movie-attribute-label').animate({opacity: 'hide'}, 'fast');
        }
    );
});

