function menuHeight() {
	if ($('#content').height()>$('#menu').height()) {
		$('#menu').css({
			'height' : $('#content').height() + 11
		});
	}		
}

$(document).ready(function(){
	menuHeight();
});
