sortHeight = function () {
	var content = $("#content");
	if (content.length) {
		content.height("auto");
		if (content.height() < info.height - 182) {
			content.height(info.height - 182);
		}
	}
};

$(document).ready(function()
{
	if($('#tdContentPane').hasClass('edit'))
	{
		$('#menu').css({'marginBottom' : '106px'});
	}
}
);
