function Carrega() {
	var produto = document.getElementById('produtos-menu');
	produto.style.width = '122px';
	produto.style.height = '32px';
	produto.style.textIndent = '-15000px';
	produto.style.backgroundImage = 'url(imagens/menu_produtos.png)';
	produto.style.backgroundPosition = '0 0';
}
window.onload = Carrega;
function ApareceMenu(){	
	var produto = document.getElementById('produtos-menu')
	produto.style.width = '122px';
	produto.style.height = '32px';
	produto.style.textIndent = '-15000px';
	produto.style.backgroundImage = 'url(imagens/menu_produtos_ativo.png)';
	produto.style.zIndex = '1000';
	document.getElementById('drop-menu').style.display = 'block';
}
function SomeMenu(){	
	var produto = document.getElementById('produtos-menu');
	produto.style.width = '122px';
	produto.style.height = '32px';
	produto.style.textIndent = '-15000px';
	produto.style.backgroundImage = 'url(imagens/menu_produtos.png)';
	produto.style.backgroundPosition = '0 0';
	document.getElementById('drop-menu').style.display = 'none';
}
