/* config */
$(function() {
    openVal = 0;
    if(openVal==0){
        $('#topMenuBtn').click(function(){
            $('#topMenu').animate({
                'top':'-4px'
            },

            {
                duration:600
            })
            openVal = 1;
        });
    }

    $('body').mousedown(function(){
        $('#topMenu').animate({
            'top':'-345px'
        },

        {
            duration:600
        })
        openVal = 0;
    });

});

