﻿$(document).ready(function () {

    $("#btnEditMenu").click(function () {
        if (($("#btnEditMode").length > 0) && ($("#btnEditMode").css("display") == "none")) {
            if (confirm("You will lose any changes.  Are you sure you want to go to the edit menu section?\r\n\r\nClick OK to continue to edit the menu.")) {
                location = "/_siteadmin/managemenu";
            }
        }
        else {
            location = "/_siteadmin/managemenu";

        }
    });

    $("#btnManagePages").click(function () {
        if (($("#btnEditMode").length > 0) && ($("#btnEditMode").css("display") == "none")) {
            if (confirm("You will lose any changes.  Are you sure you want to go to the manage pages section?\r\n\r\nClick OK to continue to manage pages.")) {
                location = "/_siteadmin/managepages";
            }
        }
        else {
            location = "/_siteadmin/managepages";

        }
    });
    $("#WaitingDialog").dialog({
        modal: true,
        resizable: false,
        autoOpen: false,
        create: function () {
            $(this).parent().find(".ui-dialog-titlebar").remove();
        },
        height: 90
    });

    $(".poweredByStoneAlley img").mouseover(function () { $(this).attr("src", "/images/hosted_stonealley_hover.png"); }).mouseout(function () { $(this).attr("src", "/images/hosted_stonealley.png") });

});

function ShowWaitingDialog() {
    $("#WaitingDialog").dialog('open');
}

function HideWaitingDialog() {
    $("#WaitingDialog").dialog('close');
}
