// JavaScript Document
function visivel(valor,op) {

var resolucao
resolucao = screen.width + ' x ' + screen.height;

switch(op) {
case '1':

	if (resolucao == "1024 x 768")
	{
	 Sub_Restaurante.style.display = valor;
	 Sub_Restaurante.style.left = 190;
	 Sub_Restaurante.style.top = 207;
	}
	else if (resolucao == "800 x 600")
	{
	 Sub_Restaurante.style.display = valor;
	 Sub_Restaurante.style.left = 78;
	 Sub_Restaurante.style.top = 207;
	}
	else if (resolucao == "1280 x 1024")
	{
	 Sub_Restaurante.style.display = valor;
	 Sub_Restaurante.style.left = 318;
	 Sub_Restaurante.style.top = 207;
	}
	else
	{
	 //document.write(" Site com melhor resolução em 800 x 600   ou    1024 x 786 ")
	}

break

case '2':

	if (resolucao == "1024 x 768")
	{
	 Sub_Cardapio.style.display = valor;
	 Sub_Cardapio.style.left = 295;
	 Sub_Cardapio.style.top = 264;
	}
	else if (resolucao == "800 x 600")
	{
	 Sub_Cardapio.style.display = valor;
	 Sub_Cardapio.style.left = 182;
	 Sub_Cardapio.style.top = 208;
	}
	else if (resolucao == "1280 x 1024")
	{
	 Sub_Cardapio.style.display = valor;
	 Sub_Cardapio.style.left = 423;
	 Sub_Cardapio.style.top = 393;
	}
	else
	{
	 document.write(" Site com melhor resolução em 800 x 600   ou    1024 x 786 ")
	}

break
}
}

