$(document).ready(function() {
	var height = $('div#content').innerHeight(false);
	if (height < 450 /*375 350 325*/) {
		height = 450 /*375 350 325*/;
		$('div#content').css('height', '380px' /* 330 305 280 255 */);
	}
	$('div#leftmenu div.content').css('height', (height - 12) + 'px');
});
