function sortHeight(){
	var content = $("#contentTable");
	if(content.length){
		if (content.height() < info.height)
			content.height(info.height);
	}
}
$(function(){
	initMenu();
	sortHeight();
	maintenance.init();
});
$(window).resize(function(){
	getDimensions();
	getScroll();
	sortHeight();
});