﻿// JScript File
var msButtonColor = "";
function menuOver(oBtn){
    oBtn.style.backgroundPosition = "-125px 0px";
    if (oBtn.tagName.toLowerCase() == "div") {
        oBtn.style.textDecoration = "underline";
        msButtonColor = oBtn.style.color;
        oBtn.style.color = "#f1c210"; // highlight
    }
}

function menuOut(oBtn){
    oBtn.style.backgroundPosition = "0px 0px";
    if (oBtn.tagName.toLowerCase() == "div") {
        oBtn.style.textDecoration = "none";
        oBtn.style.color = msButtonColor;
    }
}

