$(document).ready(function(){
    $(".expand_toggle").toggle(function(){
        $("#content").animate({
            width: "535px"
        })
        $("#sidebar").animate({
            width: '230px',
        });
        return false;
    },function(){
        $("#content").animate({
            width: "770px"
        })
        $("#sidebar").animate({
            width: '0px',
        });    
    })
})
