﻿$(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(180, 1);
        }, function () {
            $span.stop().fadeTo(260, 0);
        });
    });
    $('span.profileLinkActive').each(function () {
        $(this).css({ 'opacity': '0', 'display': 'block', 'cursor': 'hand' });
        $(this).stop().fadeTo(400, 1);
    });
});