// JavaScript Document
$(document).ready(function() {
	w = $(document).width();
	h = $(document).height();
	$('#janela').width('100%');
	$('#janela').height($(document).height());
	
	$(window).bind('resize', function() {
		$('#janela').height(0);
		$('#janela').height($(document).height());
		$('#janela').width('100%');
	});
});

