function bindSortBySelect($url)
{
    $('.orderBy').change(function()
    {
        $('#gamesListLoader').show();
        $('.gameList').css('opacity', .5);

        $('#list').load(
            $url,
            {
                orderBy: $(this).val()
            },
            function()
            {
                $('#gamesListLoader').hide();
                $('.gameList').css('opacity', 1);
                // Refresh the XFBML tags (otherwise, new tags are not detected)
                if ( FB.XFBML.Host.parseDomTree )
                    setTimeout( FB.XFBML.Host.parseDomTree, 0 );
            }
            );
    });
}

