$(document).ready(function(){
    $("#ot_top").delay(5000).slideUp(1900,function() {
        $("#opentable").css("height","49px;");
        $("#ot_button a").toggleClass("closed");
    });
    $("#ot_button").click(function() {
        if($("#ot_top").is(":hidden")) {
            $("#opentable").css('height','360px');
            $("#ot_top").slideDown(1900,function() {
                $("#ot_button a").toggleClass("closed");
            });
        } else {
            $("#opentable").css('height','39px');
            $("#ot_top").slideUp(1900,function() {
                $("#ot_button a").toggleClass("closed");
            });
        
        }
    });
});
