function hidecurrent(current){
	if (document.body.id == "consultancypage" && current != "subconsultancy"){
		document.getElementById('subconsultancy').style.display = "none";
	} else if (document.body.id == "throughlifepage" && current != "subthroughlife"){
		document.getElementById('subthroughlife').style.display = "none";
	} else if (document.body.id == "trainingpage" && current != "subtraining"){
		document.getElementById('subtraining').style.display = "none";
	}
}
function showcurrent(current){
	if (document.body.id == "consultancypage" && current != "subconsultancy"){
		document.getElementById('subconsultancy').style.display = "block";
	} else if (document.body.id == "throughlifepage" && current != "subthroughlife"){
		document.getElementById('subthroughlife').style.display = "block";
	} else if (document.body.id == "trainingpage" && current != "subtraining"){
		document.getElementById('subtraining').style.display = "block";
	}
}