// JavaScript Document
var arSiteMenu = "";
function menuOptionActive(theSelection) {
theSelection.style.backgroundColor="white";
}
function menuOptionInactive(theSelection) {
theSelection.style.backgroundColor="gainsboro";
}
function showSiteMenu(menuDivNumber) {
arSiteMenu = [document.getElementById("menupatient"),document.getElementById("menuprovider"),document.getElementById("menuaesthetician")];
i=0;
do {
	(i == menuDivNumber) ? (Effect.Appear(arSiteMenu[i], {duration:0.4})) : (Effect.Fade(arSiteMenu[i], {duration:0.1}));
	i++;
}
while(i<arSiteMenu.length);
}