jQuery(document).ready(function () {
    jQuery("#openButtonDiv").hide();
    // Expand Panel
    jQuery("#open").click(function () {
        jQuery("#panelSlider").slideDown("slow", function () { jQuery("#openButtonDiv").hide() }).show();
        //jQuery("div#openButtonDiv").hide();
        
    });

    // Collapse Panel
    jQuery("#close").click(function () {
        jQuery("div#panelSlider").slideUp("slow" , function () { jQuery("#openButtonDiv").show() }).show();
        //jQuery("#openButtonDiv").show();

    });

    //slider for login

    jQuery("#openLogin").click(function () {
        jQuery("div#panelSliderLogin").slideDown("slow");

    });

    // Collapse Panel
    jQuery("#closeLogin").click(function () {
        jQuery("div#panelSliderLogin").slideUp("slow");
    });

    // Switch buttons from "Log In | Register" to "Close Panel" on click
    jQuery("#toggle a").click(function () {
        jQuery("#toggle a").toggle();
    });

});
