function menu(path) {
	var iframe = document.getElementById('contentContainer');
	iframe.src = path;
}

function showServices() {
	document.getElementById('serviceMenu').style.display = "block";
}

function hideServices() {
	document.getElementById('serviceMenu').style.display = "none";
}

function subMenuClick(path) {
	hideServices();
	menu(path);
}
