﻿$(document).ready(function () {
    $('.magazineCover').css({ 'display': 'block', 'cursor': 'hand' });
    $('.magazineCover').each(function () {
        var $span = $('> span', this);
        $span.css({ 'opacity': '0', 'display': 'block' });

        $(this).hover(function () {
            $span.stop().fadeTo(200, 1);
        }, function () {
            $span.stop().fadeTo(600, 0);
        });
    });
});
