var CancelPostback = true;
$(document).ready(function() {

    $("#Customize ul, #Customize .b").hide();
    $("#Customize").hover(function() {
        $(this).addClass("expanded");
        $(this).find("ul").show();
        $(this).find(".b").show();
    }, function() {
        $(this).removeClass("expanded");
        $(this).find("ul").hide();
        $(this).find(".b").hide();
    });
    TransformPage();
});

function TransformPage() {
    //$(".jqform").jqTransform();
}

function CheckCookie() {

    var cookieEnabled = (navigator.cookieEnabled) ? true : false

    //if not IE4+ nor NS6+
    if (typeof navigator.cookieEnabled == "undefined" && !cookieEnabled) {
        //document.cookie = "ASP.NET_SessionId"
        cookieEnabled = (document.cookie.indexOf("ASP.NET_SessionId") != -1) ? true : false
    }

    if (!cookieEnabled) {
        alert("Cookie is not enabled in your browser, please enable cookie settings in your browser.");
    }
}
