<!--

// define standard variables

	var	path = "/images/menu/"
	var	Leftpath = "/images/leftmenu/"

// preload menu images

	welcome_on = new Image();	welcome_on.src = path + "welcome_on.gif"
	biography_on = new Image();		biography_on.src = path + "biography_on.gif"
	solo_on = new Image();		solo_on.src = path + "solo_on.gif"
	concerto_on = new Image();	concerto_on.src = path + "concerto_on.gif"
	links_on = new Image();		links_on.src = path + "links_on.gif"
	contact_on = new Image();	contact_on.src = path + "contact_on.gif"
	
// image roll over

function RollOver (MenuName) {
	if (MenuName != currentPage) { document.images[MenuName].src = path + MenuName + "_on.gif" }
}

function LeftRollOver (MenuName) {
	if (MenuName != LeftcurrentPage) { document.images[MenuName].src = Leftpath + MenuName + "_on.gif" }
}


// image roll out

function RollOut (MenuName) {
	if (MenuName != currentPage) { document.images[MenuName].src =  path + MenuName + "_off.gif" }
}

function LeftRollOut (MenuName) {
	if (MenuName != LeftcurrentPage) { document.images[MenuName].src =  Leftpath + MenuName + "_off.gif" }
}

// display current menu

function SetMenu (MenuName) {
	document.images[MenuName].src = path + MenuName + "_on.gif"
}

// display current menu

function LeftSetMenu (MenuName) {
	document.images[MenuName].src = Leftpath + MenuName + "_on.gif"
}


// -->