var controle_janela = 0;

function init()
{
	obj = document.getElementById("geral");
	if(document.body.clientWidth < 970)
	{
		if(controle_janela != 1){
			obj.style.postion = "relative";
			obj.style.float = "left";
			obj.style.left = "0";
			obj.style.marginLeft = "0";
			
			controle_janela = 1;
		}
	}
	else
	{
		if(controle_janela != 2){
			obj.style.postion = "absolute";
			obj.style.float = "none";
			obj.style.left = "50%";
			obj.style.marginLeft = "-475px";
			
			controle_janela = 2;
		}
	}
}