Event.observe(window, 'load', function() {
	var c = $$('.content')[0];
	var m = $$('.menu')[0];
	
	if (c.offsetHeight > m.offsetHeight)
		m.style.height = c.offsetHeight + 'px';
});