(function($){
	var fxcontent = $('#fxcontent')
	,	content = $('#content')
	,	footer = $('#footer');
	
	function fixcontent(){
		$(fxcontent).css({
			height: content.height() 
		});
		$(content).css({
			marginTop: -(footer.height() + content.height())
		});
		setTimeout(fixcontent, 100);
	}
	fixcontent();
})(jQuery);
