$(document).ready(function(){
	//abertura();
	$('#divCorpo').width($(window).width()-80);
	$('#divCorpo').height($(window).height()-100);	
	$('#divConteudo').width($(window).width()-360);
	$('#divConteudo').height($(window).height()-180);
	/*$('#divTitulo').width($(window).width()-385);*/
});

$(window).resize(function() {
	//redimencionar();
	$('#divCorpo').width($(window).width()-80);
	$('#divCorpo').height($(window).height()-100);	
	$('#divConteudo').width($(window).width()-360);	
	$('#divConteudo').height($(window).height()-180);
	
});

/*
$(document).ready(function(){
	document.getElementById('divPagina').style.width = ($(window).width()-40); //largura; 
});
*/


function carregaArquivo(local, nomeArquivo) {
//alert(local + ' - ' + nomeArquivo);
$(local).load(nomeArquivo,aviso());
//$("#conteudo").load('arquivo.html',aviso());
}
function aviso(){
//dispara quando carrega
//alert('O conteúdo será carregado agora!');
}

function testaIE(){
if(navigator.appName!='Microsoft Internet Explorer')
{ alert('não é Internet Explorer'); }
else
{ alert('sim é Internet Explorer'); }
}

function troca_lang(pLang){
	lang = pLang; //modifica linguagem setada
	menu = '';
	atualiza();
	abertura();
	
	document.getElementById('lang_pt-br').style.borderBottom = '1px solid black';
	document.getElementById('lang_it').style.borderBottom = '1px solid black';	
	document.getElementById('lang_en').style.borderBottom = '1px solid black';	
	document.getElementById('lang_es').style.borderBottom = '1px solid black';	
	document.getElementById('lang_fr').style.borderBottom = '1px solid black';		
	document.getElementById('lang_' + pLang).style.borderBottom = '6px solid white';	
	
	if (pLang=='pt-br') {
		txtEmpresa = 'Empresa'; txtSistema = 'Sistemas'; txtContato = 'Contato';
	}
	if (pLang=='it') {
		txtEmpresa = 'Azienda'; txtSistema = 'Sistemas'; txtContato = 'Contatto';		
	}
	if (pLang=='en') {
		txtEmpresa = 'Company';	txtSistema= 'System'; txtContato = 'Contact';
	}	
	if (pLang=='es') {
		txtEmpresa = 'Empresa';	txtSistema = 'Sistemas'; txtContato = 'Contacto';		
	}
	if (pLang=='fr') {
		txtEmpresa = 'Entreprise'; txtSistema = 'Système'; txtContato = 'Contact';		
	}	
	
	document.getElementById('menuEmpresa').innerHTML = txtEmpresa;
	document.getElementById('menuSistemas').innerHTML = txtSistema;
	document.getElementById('menuContato').innerHTML = txtContato;
}

function mostra_lang() {
	alert('lingua atual: ' + lang);
}
