﻿$(window).load(function () {
	var allHeight = $('#top').height() + $('#motion-area').height() + $('#content').height();
	var footerHeight = $(window).height() - allHeight;
	if (footerHeight > 248) {
		$('#footer').css('height', footerHeight);
	}
});
