jQuery.fn.showFullStatus = function()
{
    var $currentGame = $(this);

    $currentGame.hover(
        function()
        {
            $currentGame.parent().find('>div[id=full_'+$currentGame.attr('id')+']').fadeIn('fast');
        },
        function()
        {
            $currentGame.parent().find('>div[id=full_'+$currentGame.attr('id')+']').hide();
        }
    );
}

