// JavaScript Document

tempo = 0;
// EXIBE O MENU DROP DOWN
function showDropDown(idMenu)
{
	clearInterval(tempo);
	showObj(idMenu);
	return false;
}

// OCULTA O MENU DROP DOWN
function hideDropDown(idMenu)
{
	tempo = setInterval('hideObj("'+idMenu+'")', 50);
	return false;
}

// OCULTA UM ELEMENTO HTML
function hideObj(idObj)
{
	document.getElementById(idObj).style.display = 'none';
}

function showObj(idObj)
{
	document.getElementById(idObj).style.display = 'block';
}