// JavaScript Document
var page = window.location.href;
var index = "index.html";
if (page.match("_en")) index = "index.html"
if (page.match("_es")) index = "index_es.html"

if (page.match("restaurante"))
	window.location.replace(index+"#remote-1");
if (page.match("chef"))
	window.location.replace(index+"#remote-2");
if (page.match("carta"))
	window.location.replace(index+"#remote-3");
if (page.match("reservas"))
	window.location.replace(index+"#remote-4");
if (page.match("alojamento"))
	window.location.replace(index+"#remote-5");
if (page.match("localizacao"))
	window.location.replace(index+"#remote-6");
if (page.match("cogumelo"))
	window.location.replace(index+"#remote-7");
if (page.match("opinioes"))
	window.location.replace(index+"#remote-8");

