$(document).ready(function() {
	build_menu();
} 
);

function build_menu() {
	var height = Math.max($('div.menu').height(),$('div.content').height(),$('#container-page').height());
	height = height - 39; // minus css bottom height
 	$('div.menu').css({
 	"height": height+"px"
 	});
}
