function sortHeight(){
	var content = $("#content"), footer = $("#footer");
	if(content.length && footer.length){
		var contOffset = content.offset();
		content.height("auto");
		if(contOffset.top + content.height()+footer.height() < info.height)
			content.height(info.height-footer.height()- contOffset.top -1);
	}
}
$(function(){

	$("#MainMenu").children("dt").after($("<dt class='line'></dt>"));

});
