function openMenu(div)
{
	
	document.getElementById(div).style.display = "block";
	
	var menu = document.getElementById(div.replace('text', 'link'));
	
	switch(div){
		case 'text1': menu.style.cssText = "background:url(/skins/page/root/imagens/botao-01-on.png) no-repeat;" ; break;	
		case 'text2': menu.style.cssText = "background:url(/skins/page/root/imagens/botao-02-on.png) no-repeat;" ; break;	
		case 'text3': menu.style.cssText = "background:url(/skins/page/root/imagens/botao-03-on.png) no-repeat;"; break;	
	}
	
	
}

function closeAllMenus(menusTotal)
{
	document.getElementById("DivTextos").style.display = "none";
	document.getElementById("text1").style.display = "none";
	document.getElementById("text2").style.display = "none";
	document.getElementById("text3").style.display = "none";
	
	
	document.getElementById('link1').style.cssText = "background:url(/skins/page/root/imagens/botao-01-off.png) no-repeat;";
	document.getElementById('link2').style.cssText = "background:url(/skins/page/root/imagens/botao-02-off.png) no-repeat;";
	document.getElementById('link3').style.cssText = "background:url(/skins/page/root/imagens/botao-03-off.png) no-repeat;";
	


}
