var Extensions = {
    makeContentFullSize: function(staticHeight){
        $("#images").remove();
        $("#content").css({
            "margin": 0,  
            "width": 890, 
            "padding": 0, 
            "margin-left": 10, 
            "margin-top": 10, 
            "height": 390});
        if (staticHeight) {
            $("#content").css("overflow-y", "hidden");
        }
    }
}
