// JavaScript Document

function fillDiv(a){
	div = document.getElementById("projects")
	
	var text = ''
	a = a.innerHTML
	
	switch(a) {
		case "Simon Perry":
			text = '<b>'+ a + '</b> put all the text you want in here and it will show up time and time again.'
			break;
		case "Murray Gutry":
			text = '<b>'+ a + '</b> put all the text you want in here and it will show up time and time again.'
			break;
		case "Kim Willoughby":
			text = '<b>'+ a + '</b> put all the text you want in here and it will show up time and time again.'
			break;
		case "General Managers":
			text = '<b>'+ a + '</b> put all the text you want in here and it will show up time and time again.'
			break;
		default:
			text = ''
	}
	
	
	div.innerHTML = text
}

function fillDiv2(a){
	
	var text = ''
	a = a.innerHTML
		div = document.getElementById(a)
	
	switch(a) {
		case "Commercial":
			text = '<img src="Images/arrow.gif" width="24" height="37" align="right"><b>'+ a + '</b> put all the text you want in here and it will show up time and time again.'
			break;
		case "Residential":
			text = '<img src="Images/arrow.gif" width="24" height="37" align="right"><b>'+ a + '</b> put all the text you want in here and it will show up time and time again.'
			break;
		case "Industrial":
			text = '<img src="Images/arrow.gif" width="24" height="37" align="right"><b>'+ a + '</b> put all the text you want in here and it will show up time and time again.'
			break;
		default:
			text = ''
	}
	
	
	div.innerHTML = text
}

function emptyDiv(a){
	
	a = a.innerHTML
		div = document.getElementById(a)
		
	
	div.innerHTML = ''
}

function locations(city){
	d = document.getElementById("location")
	
	var text = '<h3>'+city+'</h3>'
	var newline = '<br><br>'
	
	switch (city) {
		case "Whangarei":
			text += ""
			break;
		case "Auckland":
			text += "<b>Perry Metal Protection</b><br>41 Timothy Place<br>Rosebank<br>Phone: 09 8208471"+newline
			//text += "<b>Perry Environmental</b><br>Waitakere Organic Centre<br>50 The Concourse<br>Lukens Pt<br>Henderson<br>Phone: 09 8365560"+newline
			text += "<b>Perry Aggregates</b><br>Te Henga Road Quarry<br>Waitakere"
			break;
		case "Ngaruawahia":
			break;
		case "Waikato":
			text += "<b>Hamilton</b>"+newline
			text += "<b>Perry Group</b><br>Perry House<br>360 Tristram St<br>Phone: 07 8383633<br>0800 737797"+newline
			text += "<b>Perry Foundation</b><br>Perry House<br>360 Tristram St<br>Phone: 07 8346310"+newline
			text += "<b>Perry Metal Protection</b><br>14 Manchester Place<br>Te Rapa<br>Phone: 07 8500120"+newline
			text += "<b>Perry Aggregates</b><br>Hutchinson Rd<br>Horotiu<br>Phone: 07 8299602"+newline
			//text += "<b>Perry Environmental</b><br>Hamilton Organic Centre<br>Wickham Street<br>Dinsdale<br>Phone: 07 8461514"+newline
			//text += "<b>Horotiu Landfill</b><br>River Road North<br>Horotiu<br>Phone: 07 8299678"+newline
			text += "<b>Ngaruawahia</b><br>Perry Quarries<br>Waingaro Road<br>Phone: 07 8248504"+newline
			text += "<b>Morrinsville</b><br>Perry Aggregates<br>Tauhei Quarry<br>Tauhei Road<br>Ph 07 887 6849<br>Fax 07 887 6846"
			break;
		case "Tauranga":
			
			text += "<b>Perry Metal Protection</b><br>P119 Oropi Road<br>Greerton<br>Phone: 07 5411344"+newline
			//text += "<b>Perry Environmental</b><br>Tauranga Organic Centre<br>3rd gate on right Tip Lane<br>Te Maunga<br>Mt Maunganui<br>Phone: 07 5722669<br>0800 367967"+newline
			//text += "Te Maunga Transfer Station<br>Truman Road<br>Te Maunga<br>Mt Maunganui<br>Phone: 07 5748091"+newline
			//text += "Maleme Street Transfer Station<br>Maleme Street<br>Greerton<br>Phone: 07 5411906"
			break;
		case "Te Kumi":
			text += "<b>Ravensdown Supreme</b><br>Care of Perry Lime<br>379 Mangarino Road<br>Te Kuiti<br>Phone: 07 8788259<br>0800 424745"+newline
			text += "<b>Perry Lime</b><br>379 Mangarino Road<br>Te Kuiti<br>Phone: 07 8788259<br>0800 424745"
			break;
		case "New Plymouth":
		
			//text += "<b>Perry Environmental</b><br>Brixton Organic Centre<br>96 Waitara Rd<br>Brixton<br>Phone: 06 7544151"
			break;
		case "Rotorua":
			break;
		case "Taupo":
			
			
			break;
		case "Wellington":
			text += "<b>Perry Metal Protection</b><br>129 Hutt Park Road<br>Gracefield<br>Phone: 04 5684139"
			break;
		case "Christchurch":
			text += "<b>Perry Metal Protection</b><br>Perry Metal Protection<br>5 Chinook Place<br>Hornby<br>Phone: 03 3490290<br>0800 4468347"
			break;
		default:
			
		}
	
	d.innerHTML = text

}
