var oldTotalHeight = 0;
var offset = 30;
if(document.all) {
	// ie settings
	offset = 20;
	$(document).ready(function() {
		$("#content").css("margin-top", "0px");
	});
}
function loadImg(obj, src) {
	$(obj).children().first().attr("src", src);
}
function scale() {
	// default
	totalHeight = $(window).height();
	if (oldTotalHeight != totalHeight) {
		oldTotalHeight = totalHeight;
		$("#content").css("height", (totalHeight-90-offset)+"px");
		$("#footer").css("top", (totalHeight-20));
	}
}
window.setInterval("scale()", 50);
