﻿
$(document).ready(function () {
    // Center the member widget
    var userWidth = $("#user").width();
    var centerWidth = $("#centered").width();
    $("#user").css("left", ((centerWidth - userWidth) / 2) - 27);

    // Enable dialogs
    $(".modal").click(function () {
        var dialogId = "#" + $(this).attr("rel");
        $(dialogId).modal({
            onShow: function (dialog) {
                $("#simplemodal-container").css("height", "auto");
            }
        });
    });

});


