// JavaScript Document
addOnload(googleMapToggle);

function addOnload(newFunction) {
	var oldOnload = window.onload;
	
	if (typeof oldOnload == "function") {
		window.onload = function() {
			if (oldOnload) {
				oldOnload();
			}
			newFunction();
		}
	}
	else {
		window.onload = newFunction;
	} 
}

function googleMapToggle()
{
	document.getElementById('pAuckland').onclick = showAuckland;	
	document.getElementById('pAucklandDepot').onclick = showAucklandDepot;	
	document.getElementById('pPalmerston').onclick = showPalmerston;
	document.getElementById('pChristchurch').onclick = showChristchurch;
	
	document.getElementById('Auckland').onclick = showAuckland;	
	document.getElementById('AucklandDepot').onclick = showAucklandDepot;	
	document.getElementById('Palmerston').onclick = showPalmerston;
	document.getElementById('Christchurch').onclick = showChristchurch;
	
	document.getElementById('Auckland-link').onclick = showAuckland;	
	document.getElementById('Auckland-link1').onclick = showAucklandDepot;	
	document.getElementById('Palmerston-link').onclick = showPalmerston;
	document.getElementById('Christchurch-link').onclick = showChristchurch;
	
	document.getElementById('NZ').onclick = allNZ;
	// google doesn't allow cross linking ie changing the source attribute of the iframe so we have to rewrite the whole iframe.
	var googleMap = document.getElementById("mapholder");

	function showAuckland ()
	{
	googleMap.innerHTML = '<iframe width="580" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?hl=en&amp;ie=UTF8&amp;t=p&amp;s=AARTsJo1ya7MBytij89MR4PuXPd7MtB3AA&amp;msa=0&amp;msid=100009042750989621660.000450517dc02de33761d&amp;ll=-36.850711,174.771366&amp;spn=0.027473,0.049782&amp;z=14&amp;output=embed"></iframe>';
	}
	
	function showAucklandDepot ()
	{
	googleMap.innerHTML = '<iframe width="580" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;t=p&amp;s=AARTsJo1ya7MBytij89MR4PuXPd7MtB3AA&amp;msa=0&amp;msid=100009042750989621660.000450517dc02de33761d&amp;ll=-36.993641,174.788361&amp;spn=0.054843,0.099564&amp;z=13&amp;output=embed"></iframe>';
	}
	
	function showPalmerston ()
	{
	googleMap.innerHTML = '<iframe width="580" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?hl=en&amp;ie=UTF8&amp;t=p&amp;s=AARTsJo1ya7MBytij89MR4PuXPd7MtB3AA&amp;msa=0&amp;msid=100009042750989621660.000450517dc02de33761d&amp;ll=-40.35109,175.62079&amp;spn=0.013082,0.024891&amp;z=15&amp;output=embed"></iframe>';
	}
	function showChristchurch ()
	{
	googleMap.innerHTML = '<iframe width="580" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?hl=en&amp;ie=UTF8&amp;t=p&amp;s=AARTsJo1ya7MBytij89MR4PuXPd7MtB3AA&amp;msa=0&amp;msid=100009042750989621660.000450517dc02de33761d&amp;ll=-43.490105,172.56114&amp;spn=0.012454,0.024891&amp;z=15&amp;output=embed"></iframe>';
	}
	function allNZ()
	{
	googleMap.innerHTML=  '<iframe width="580" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;t=p&amp;s=AARTsJo1ya7MBytij89MR4PuXPd7MtB3AA&amp;msa=0&amp;msid=100009042750989621660.000450517dc02de33761d&amp;ll=-40.380028,175.341797&amp;spn=13.381799,25.488281&amp;z=5&amp;output=embed"></iframe>';
	}
	
}