image01= new Image(1,814);
image01.src="images/bg.png";
image02= new Image(312,53);
image02.src="images/logo.gif";
image03= new Image(1000,45);
image03.src="images/bg-top.png";
image04= new Image(1000,86);
image04.src="images/bg-bottom.png";
image05= new Image(48,768);
image05.src="images/bg-shadow-l.png";
image06= new Image(48,768);
image06.src="images/bg-shadow-r.png";
image07= new Image(711,265);
image07.src="images/acupuncture-treatment-room-01.jpg";

function initAll() {
	var allLinks = document.getElementsByTagName("a");
	
	for (var i=0; i<allLinks.length; i++) {
		if (allLinks[i].className.indexOf("menuLink") > -1) {
			allLinks[i].onclick = function() {return false;}
			allLinks[i].onmouseover = toggleMenu;
		}
	}
}

function toggleMenu() {
	var startMenu = this.href.lastIndexOf("/")+1;
	var stopMenu = this.href.lastIndexOf(".");
	var thisMenuName = this.href.substring(startMenu,stopMenu);

	document.getElementById(thisMenuName).style.display = "block";

	this.parentNode.className = thisMenuName;
	this.parentNode.onmouseout = toggleDivOff;
	this.parentNode.onmouseover = toggleDivOn;	
}

function toggleDivOn() {
	document.getElementById(this.className).style.display = "block";
}

function toggleDivOff() {
	document.getElementById(this.className).style.display = "none";
}