window.onload = function() {

	if (document.getElementById('nav_home')) {
		
		var homelink = document.getElementById('nav_home').firstChild.firstChild;
		var txt = homelink.text ? homelink.text : homelink.innerText;
		
		if (txt && (txt != 'Home')) { // Check if the page isn't still in English
		
			document.getElementById('translate').style.display = 'none'; // hide translation options (the links would fail)
		
			// now restore anything (addresses) that shouldn't have been translated...
		
			if (document.getElementById('companyname')) {
				document.getElementById('companyname').innerHTML = 'Europlaz Technologies Limited';
			}
		
			if (document.getElementById('address_southminster')) {
				document.getElementById('address_southminster').innerHTML = '<strong>Europlaz Technologies Limited<br>The Maltings Industrial Estate<br>Southminster<br>Essex<br>CM0 7EH</strong>';
			}
		
			if (document.getElementById('address_hucknall')) {
				document.getElementById('address_hucknall').innerHTML = '<strong>Europlaz Technologies Limited<br>Daniels Way<br>Hucknall<br>Notts<br>NG15 7LL</strong>';
			}
			
		}
		
	}
	
}