﻿// JScript File
function contentmenumouseover(tdObj) {
    tdObj.style.backgroundColor = "#D87332";
    tdObj.style.borderTop = tdObj.style.borderRight = tdObj.style.borderBottom = tdObj.style.borderLeft = "#AB5821 1px solid";
}
function contentmenumouseout(tdObj, isSelected) {
    if( isSelected ) {
        tdObj.style.backgroundColor = "#D87332";
        tdObj.style.borderTop = tdObj.style.borderRight = tdObj.style.borderBottom = tdObj.style.borderLeft = "#AB5821 1px solid";
    }
    else {
        tdObj.style.backgroundColor = "#7B8FA7";
        tdObj.style.borderTop = tdObj.style.borderRight = tdObj.style.borderBottom = tdObj.style.borderLeft = "#516D90 1px solid";
    }
}

function contentMenuMOv(tdObj) {
	tdObj.style.backgroundColor = "#D87332";
    tdObj.style.borderTop = tdObj.style.borderRight = tdObj.style.borderBottom = tdObj.style.borderLeft = "#AB5821 1px solid";
}
function contentMenuMO(tdObj, isSelected, selectedBgColor, unSelectedBgColor) {
    if( isSelected ) {
        tdObj.style.backgroundColor = selectedBgColor;
        tdObj.style.borderTop = tdObj.style.borderRight = tdObj.style.borderBottom = tdObj.style.borderLeft = "#AB5821 1px solid";
    }
    else {
        tdObj.style.backgroundColor = unSelectedBgColor;
        tdObj.style.borderTop = tdObj.style.borderRight = tdObj.style.borderBottom = tdObj.style.borderLeft = "#516D90 1px solid";
    }
}
