// JavaScript Document

// functions to hide/show and position the red pin overlay for Australian cities.
function showCity(pCity)
{
	var pin=document.getElementById("pin_red");
	var pinLink=document.getElementById("pin_red_link");
	pin.style.display = "block";
	if (pCity == "mel")
	{
		pin.style.top = "158px";
		pin.style.left = "150px";
		pinLink.setAttribute("href", "/australia-sightseeing/melbourne-day-tours");
		pinLink.firstChild.setAttribute("alt", "Melbourne");
	}
	else if (pCity == "hob")
	{
		pin.style.top = "183px";
		pin.style.left = "154px";
		pinLink.setAttribute("href", "/australia-sightseeing/tasmania-day-tours/");
		pinLink.firstChild.setAttribute("alt", "Tasmania");
	}
	else if (pCity == "adl")
	{
		pin.style.top = "136px";
		pin.style.left = "118px";
		pinLink.setAttribute("href", "/australia-sightseeing/adelaide-day-tours");
		pinLink.firstChild.setAttribute("alt", "Adelaide");
	}
	else if (pCity == "syd")
	{
		pin.style.top = "134px";
		pin.style.left = "181px";
		pinLink.setAttribute("href", "/australia-sightseeing/sydney-day-tours");
		pinLink.firstChild.setAttribute("alt", "Sydney");
	}
	else if (pCity == "brs")
	{
		pin.style.top = "99px";
		pin.style.left = "191px";
		pinLink.setAttribute("href", "/australia-sightseeing/brisbane-day-tours");
		pinLink.firstChild.setAttribute("alt", "Brisbane");
	}
	else if (pCity == "gc")
	{
		pin.style.top = "108px";
		pin.style.left = "191px";
		pinLink.setAttribute("href", "/australia-sightseeing/gold-coast-day-tours");
		pinLink.firstChild.setAttribute("alt", "Gold Coast");
	}
	else if (pCity == "drw")
	{
		pin.style.top = "23px";
		pin.style.left = "77px";
		pinLink.setAttribute("href", "/australia-sightseeing/darwin-day-tours");
		pinLink.firstChild.setAttribute("alt", "Darwin");
	}
	else if (pCity == "crn")
	{
		pin.style.top = "40px";
		pin.style.left = "156px";
		pinLink.setAttribute("href", "/australia-sightseeing/cairns-day-tours");
		pinLink.firstChild.setAttribute("alt", "Cairns");
	}
	else if (pCity == "as")
	{
		pin.style.top = "83px";
		pin.style.left = "90px";
		pinLink.setAttribute("href", "/australia-sightseeing/alice-springs-day-tours");
		pinLink.firstChild.setAttribute("alt", "Alice Springs");
	}
	else if (pCity == "per")
	{
		pin.style.top = "122px";
		pin.style.left = "8px";
		pinLink.setAttribute("href", "/australia-sightseeing/perth-day-tours");
		pinLink.firstChild.setAttribute("alt", "Perth");
	}
	else if (pCity == "bm")
	{
		pin.style.top = "125px";
		pin.style.left = "167px";
		pinLink.setAttribute("href", "/australia-sightseeing/katoomba-day-tours");
		pinLink.firstChild.setAttribute("alt", "Katoomba");
	}
	else if (pCity == "sc")
	{
		pin.style.top = "89px";
		pin.style.left = "190px";
		pinLink.setAttribute("href", "/australia-sightseeing/sunshine-coast-day-tours");
		pinLink.firstChild.setAttribute("alt", "Sunshine Coast");
	}
	else if (pCity == "nzau")
	{
		pin.style.top = "164px";
		pin.style.left = "221px";
		pinLink.setAttribute("href", "/australia-sightseeing/new-zealand-tours/");
		pinLink.firstChild.setAttribute("alt", "Auckland");
	}
	else if (pCity == "nzch")
	{
		pin.style.top = "216px";
		pin.style.left = "207px";
		pinLink.setAttribute("href", "/australia-sightseeing/new-zealand-tours/");
		pinLink.firstChild.setAttribute("alt", "Christchurch");
	}
	else if (pCity == "nzqu")
	{
		pin.style.top = "232px";
		pin.style.left = "183px";
		pinLink.setAttribute("href", "/australia-sightseeing/new-zealand-tours/");
		pinLink.firstChild.setAttribute("alt", "Christchurch");
	}
	else if (pCity == "bme")
	{
		pin.style.top = "46px";
		pin.style.left = "39px";
		pinLink.setAttribute("href", "/australia-sightseeing/broome-day-tours");
		pinLink.firstChild.setAttribute("alt", "Broome");
	}
}

function hideCity()
{
	var mel=document.getElementById("pin_red")
	mel.style.display = "none";
}