function insertMenu(n,p) {
document.write(
"<div id='menu" + n + "' class='" + p + "Menu'><!-- menu " + n + " -->"

	+"<div id='label" + n + "1' class='mLabel'>Osteopathy</div>"
	+"<div id='box" + n + "1' class='mBox'>"
		+" <a class='m' href='./index.html'>Home page</a>"
		+" <a class='m' href='./osteoWhat.html'>What we do</a>"
		+" <a class='m' href='./osteoHow.html'>What to expect</a>"
		+" <a class='m' href='./osteoWhy.html'>Why we do it</a>"
		+" <a class='m' href='./osteoWho.html'>Who we treat</a>"
	+"</div>"
	
	+"<div id='label" + n + "2' class='mLabel'>About Us</div>"
	+"<div id='box" + n + "2' class='mBox'>"
		+"  <a class='m' href='./osteoCVs.html'>Staff profiles</a>"
		+"  <a class='m' href='./osteoClients.html'>What our clients say</a>"
		+"  <a class='m' href='./osteoPress.html'>Press reports</a>"
		+"  <a class='m' href='./osteoHistory.html'>The Osteopathy Centre</a>"
	+"</div>"
	
	+"<div id='label" + n + "3' class='mLabel'>Contact details</div>"
	+"<div id='box" + n + "3' class='mBox'>"
	+"  <a class='m' href='./osteoContact.html'>Address & phone</a>"
	+"  <a class='m' href='./osteoMap.html'>Map</a>"
	+"</div>"

	+"<div id='label" + n + "4' class='mLabel'>Information</div>"
	+"<div id='box" + n + "4' class='mBox'>"
	+"  <a class='m' href='./osteoAppts.html'>Appointment</a>"
	+"  <a class='m' href='./osteoLinks.html'>Useful links</a>"
	+"</div>"

+"</div><!-- end menu" + n + " -->"
); // end document.write()
} // end insertMenu()
