$(document).ready(function(){
    $("#menu_cont").tabs();

    $("#arrow").click(function(event){
        $("#arrow *").click(function(e) {
            e.stopPropagation();
        });

        //event.stopPropagation();
        var wid = $(this).width();
        if(wid > 45){
            $('#menu_cont').hide();
            $(this).animate({backgroundColor: '#533C2C', width: 45}, 'fast', function(){
                $(this).css({backgroundColor: 'transparent'});
            });
            
            return;
        }else{
            //var toWidth = ($(document).width() - 100);
            
            $(this).animate({backgroundColor: '#533C2C', width: 861}, 'fast');
            $('#menu_cont').show();
            return;
        }       
    });
});

