$(document).ready(function(){
	handle_height();
});
function handle_height(){
	var h1 = parseInt(292);
	var h2 = parseInt($("#content_wrapper").height());
	var h3 = parseInt(h2+148);
	$("#menu_box").css('height',h1+h3+"px");
}
