



$(document).ready(function(){
		
	var largura = $(document).width();
	var altura = $(document).height();
	
	var lugar = $("#conteudo");
	var texto = $("#texto");
	
	var lWidth = lugar.width();
	var lHeight = lugar.height();
	var tWidth = texto.width();
	
	var bb = $("body");
	

	
	if(largura > 1024) {
		
		lugar.width(lWidth+100);
		texto.width(tWidth+100);
		bb.addClass("grande");
		bb.removeClass("pequeno");
		lugar.height(lHeight);
	}else{
		lugar.width(760);
		texto.width(460);
		bb.removeClass("grande");
		bb.addClass("pequeno");
		lugar.height(lHeight+380);
	}
 
});
