//

var panel;
(function($){
    Panel = function(contenedor){
        contenedor = $("#"+contenedor);
        var initialize = function(){
		resizediv();
            $(window).resize(function(){resizediv()});
		}
		var resizediv = function(){
			var height = $("#main_container").height();
			height = parseInt(height) - 100;
			contenedor.css("padding","0")
			contenedor.css("height",height+"px");                
		}
		
        initialize();
        
    }
})(jQuery)

$(window).ready(function(){
   panel = new Panel("left_menu",false);
  
});
