function loadPages(pageTab)  {
	document.getElementById("homeTab").className = 'MenuNotSelected';
	document.getElementById("companyTab").className = 'MenuNotSelected';
	document.getElementById("unitsTab").className = 'MenuNotSelected';
	document.getElementById("newsTab").className = 'MenuNotSelected';
	document.getElementById("aboutTab").className = 'MenuNotSelected';
	document.getElementById("contactTab").className = 'MenuNotSelected';
	document.getElementById("linksTab").className = 'MenuNotSelected';



	if (pageTab == "home") {
		parent.main.window.location="/homePage.html";
		document.getElementById("homeTab").className = 'MenuSelected';
	}
	else if (pageTab == "company") {
		parent.main.window.location="/company_profile.html";
		document.getElementById("companyTab").className = 'MenuSelected';
	}
	else if (pageTab == "units") {
		parent.main.window.location="/business_units.html";
		document.getElementById("unitsTab").className = 'MenuSelected';
	}
	else if (pageTab == "news") {
		parent.main.window.location="/news.html";
		document.getElementById("newsTab").className = 'MenuSelected';
	}
	else if (pageTab == "about") {
		parent.main.window.location="/about_us.html";
		document.getElementById("aboutTab").className = 'MenuSelected';
	}
	else if (pageTab == "contact") {
		parent.main.window.location="/contact_us.html";
		document.getElementById("contactTab").className = 'MenuSelected';
	}
	else if (pageTab == "links") {
		parent.main.window.location="/links.html";
		document.getElementById("linksTab").className = 'MenuSelected';
	}
	else if (pageTab == "botswana") {
		window.location="/botswana/botswana_home.html";
	}
	else if (pageTab == "ghana") {
		window.location="/ghana/ghana_home.html";
	}
	else if (pageTab == "kenya") {
		window.location="/kenya/kenya_home.html";
	}
	else if (pageTab == "lesotho") {
		window.location="/lesotho/lesotho_home.html";
	}
	else if (pageTab == "malawi") {
		window.location="/malawi/malawi_home.html";
	}
	else if (pageTab == "mauritius") {
		window.location="/mauritius/mauritius_home.html";
	}
	else if (pageTab == "mozambique") {
		window.location="/mozambique/mozambique_home.html";
	}
	else if (pageTab == "swaziland") {
		window.location="/swaziland/swaziland_home.html";
	}
	else if (pageTab == "tanzania") {
		window.location="/tanzania/tanzania_home.html";
	}
	else if (pageTab == "zambia") {
		window.location="/zambia/zambia_home.html";
	}
}

function init(pageTab) {
	if (pageTab == "home") {
		document.getElementById("homeTab").className = 'MenuSelected';
	}
	else if (pageTab == "company") {
		document.getElementById("companyTab").className = 'MenuSelected';
	}
	else if (pageTab == "units") {
		document.getElementById("unitsTab").className = 'MenuSelected';
	}
	else if (pageTab == "news") {
		document.getElementById("newsTab").className = 'MenuSelected';
	}
	else if (pageTab == "about") {
		document.getElementById("aboutTab").className = 'MenuSelected';
	}
	else if (pageTab == "contact") {
		document.getElementById("contactTab").className = 'MenuSelected';
	}
}

