function carrega_imagens () {
	document.imagens_v = new Array();
	var args = carrega_imagens.arguments;

	for(i = 0; i < args.length; i++) {
		document.imagens_v[i] = new Image;
		document.imagens_v[i].src = args[i];
	}
}
function botao_brilha (nome, img) {
	document.images[nome].src = img;
}
function popup (id, c) {
	var elm = document.getElementById(id);
	elm.style.display = c == 1 ? 'block' : 'none';
}
function colapsa (id) {
	var elm = document.getElementById(id);
	if (elm.style.display == "none") {
		popup (id, 1);
	} else {
		popup (id, 0);
	}
}
function painel_menu (titulo, menu, ncookie) {
	if (document.getElementById(menu)) {
		if (titulo.aberto == 1) {
			popup (menu, 0);
			titulo.aberto = 0;
		} else {
			popup (menu, 1);
			titulo.aberto = 1;
		}
		if (!ncookie) document.cookie = menu+"="+titulo.aberto+"; expires=Sat, 03 Oct 2009 15:32:15 +0200; path=/";
	}
	if (titulo.aberto == 1) {
		titulo.innerHTML = titulo.nome+'&nbsp;<img align="top" src="estilo/v3/imagens/seta_cima.gif" alt="" border="0" />';
	} else {
		titulo.innerHTML = titulo.nome+'&nbsp;<img align="top" src="estilo/v3/imagens/seta_baixo.gif" alt="" border="0" />';
	}
}