function footerPosition() {
	var footer = $('#footer');
	var branded = $("#branded");

	var footerHeight = footer.height() + 18;
	var brandedHeight = branded.height() + 18;
	var clientHeight = $("#main").height() - brandedHeight;

	footer.css("top", (clientHeight - footerHeight) + 'px');
	branded.css("top", (clientHeight - footerHeight) + 'px');

    window.onresize = function() {
    	var h = $("#main").height() - brandedHeight;
    	footer.css("top", (h - footerHeight) + 'px');
    	branded.css("top", (h - footerHeight) + 'px');
    }
}
