function MostraMenuIndex(mostrar, idmenu)
{
	if(mostrar){
		$("#" + idmenu).show();
		window.clearTimeout();
	}else{
		$("#" + idmenu).hide();
	}
}