var erpsstadir = erpsstadir || {};

erpsstadir.init = function() {
	setFooter();
	window.onresize = setFooter;
	
	
};

function setFooter()
{
	var docHeight = $('#content').height()+$('#header').height()+$('#footer').height();
	//alert(docHeight);
	if (document.body.clientHeight > docHeight) {
		$('#content').height(document.body.clientHeight-243-170);
	}
}

/**
 * On document ready.
 */
$(document).ready(erpsstadir.init);