var page = new Array();

page['index'] = new Array('ImproChem:Air,Water and Energy solutions', 'index.html');
page['products'] = new Array('Please contact us for product information', 'HeadOffice.html');
page['about'] = new Array('Mission and Values', 'PhilosophyofOperation.html');
page['contact'] = new Array('Contact details here', 'contact.html');
page['privacy'] = new Array('Privacy Policy', 'privacy.html');
page['conditions'] = new Array('Terms and Conditions', 'conditions.html');
page['palintest'] = new Array('Palintest', 'http://www.palintest.com');

function autoArea3() {
	if (page[document.getElementById('the_body').className] != null) {
		document.getElementById('a3link').href = page[document.getElementById('the_body').className][1];
		document.getElementById('a3link').innerHTML = page[document.getElementById('the_body').className][0];
	} else {
		return false;
	}
}

