// JavaScript Documentfunction switchImage(imgName, imgSrc) {	if (document.images) {		if (imgSrc != "none") {			document.images[imgName].src = imgSrc;		}	}}// Call QuickMenu Pro showMenu() function if menu is loaded.// Put in place to avoid JavaScript errors when the menu is// not attached to a page.function showMenuWrapper(e) {	if (window.showMenu) {		showMenu(e);	}}// Call QuickMenu Pro hideMenu() function if menu is loaded.// Put in place to avoid JavaScript errors when the menu is// not attached to a page.function hideMenuWrapper(e){	if (window.hideMenu) {		hideMenu(e);	}}