// JavaScript Document
$(document).ready(function () {
    $(".bottom h3").click(function () {
        if ($('#general').hasClass('disabled')) {
            $("#general").removeClass("disabled");
            $('.bottom').animate({
                height: "350px"
            });
        } else {
            $("#general").addClass("disabled");
            $('.bottom').animate({
               height: "100px"
            });
        }
   });
});
