// JavaScript Document

	$(document).ready(function(){
		$.fn.extend({
			resizePage: function(){
				var w = $(window).height();
				var c = $("#conteudo").height();
				var f = $("#footer").height();
				var h = (w > c) ? w : c;

				$(this).height(h - f);
			}
		});

		$(window).resize(function(){
			$("#fullsize").resizePage();
		});

		$("#fullsize").resizePage();
	});

