
	$(function(){
		var windows_height = $(window).height();
		var top_header_h = $('#top_bar').height();
		var header_h = $('#header').height();
		var content_h = $('#content').height();
		
		$('#footer').css('height',(windows_height-(top_header_h+header_h+content_h))+45);
		
		$('#footer .pageFix').css('height',(windows_height-(top_header_h+header_h+content_h))+45);
	});

