$(document).ready(function() { // Expand Panel $("#open").click(function(){ // Открвыаем окно авторизации getDialogLogin(); /* if ($("#open").attr("name") == 'openEnter') { $("#divEnter").removeAttr("style"); $("#divRegister").attr("style", "display:none;"); } if ($("#open").attr("name") == 'openProfile') { $("#divProfile").removeAttr("style"); } $("div#panel").slideDown("slow"); */ }); /* $("#openRegister").click(function(){ if ($("#openRegister").attr("name") == 'open') { $("#divRegister").removeAttr("style"); $("#divEnter").attr("style", "display:none;"); } $("div#panel").slideDown("slow"); }); // Collapse Panel $("#close").click(function(){ $("div#panel").slideUp("slow"); }); // Switch buttons from "Log In | Register" to "Close Panel" on click $("#toggle a").click(function () { $("#toggle a").toggle(); }); */ });