﻿$(document).ready(function() {
    $('.rollover').css({ 'display': 'block', 'cursor': 'hand' });
    $('.rollover').each(function() {
        var $span = $('> span', this);
        $span.css({ 'opacity': '0', 'display': 'block', 'position': 'absolute' });

        $(this).hover(function() {
            $span.stop().fadeTo(150, 1);
        }, function() {
            $span.stop().fadeTo(400, 0);
        });
    });
});