function sortHeight(){
	var content = $("#contentScroller");
	if(content.length){
		var contOffset = content.offset();
		content.height(info.height - contOffset.top);
	}
	if(info.width < 900)
		document.body.style.backgroundPosition = -510+"px top";
	else
		document.body.style.backgroundPosition = "center top";
}
$(function(){
	initMenu();
	sortHeight();
	maintenance.init();
});
$(window).resize(function(){
	getDimensions();
	getScroll();
	sortHeight();
});