$(document).ready(function() {

    $("#log_in").hide();
    $("#ac_no").hide();
    $("#sh_b").hide();

    $("#s_in").click(function() {
        $("#log_in").toggle("slow");
        $("#ac_no").toggle("slow");
        $("#sh_b").toggle("slow");
        $("#sign_up").hide();
        $("#ac_yes").hide();
        $("#sh_a").hide();
    });

    $("#s_up").click(function() {
        $("#sign_up").toggle("slow");
        $("#ac_yes").toggle("slow");
        $("#sh_a").toggle("slow");
        $("#ac_no").hide();
        $("#log_in").hide();
        $("#sh_b").hide();
    });
    $("#s_in_upper").click(function() {
        var element = document.getElementById('sh_b');
        if (element.style.display != "block") {
            $("#log_in").toggle("slow");
            $("#ac_no").toggle("slow");
            $("#sh_b").toggle("slow");
            $("#sign_up").hide();
            $("#ac_yes").hide();
            $("#sh_a").hide();
        }
    });
});   