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