function logar(){
	
alert('Para efetuar um pedido é necessário fazer o Login!');

	
}

function menu(idLinha, totalLinhas){

for(z=1; z<=totalLinhas; z++){
var line = document.getElementById(z);

line.setAttribute("className", "hide");
line.setAttribute("class", "hide");
}

var exibe = document.getElementById(idLinha);
	exibe.setAttribute("className", "show");
	exibe.setAttribute("class", "show");
	
}
