var lmenu_norm = new Image();
var lmenu_over = new Image();

/*****************************/
/*    lmenuImgPreLoading     */
/*****************************/
function lmenuImgPreLoading()
{ lmenu_norm.src = rootpath + "images/bg_silver.gif";
  lmenu_over.src = rootpath + "images/bg_silver_over.gif";
}

/*****************************/
/*    highlightLeftMenu      */
/*****************************/
function highlightLeftMenu(theObj)
{ if(lmenu_over.src)
  { theObj.className='lmenuTD2';
    theObj.style.background = "#E1E2E3";
  }
}

/*****************************/
/*     lowlightLeftMenu      */
/*****************************/
function lowlightLeftMenu(theObj)
{ if(lmenu_norm.src)
  { theObj.className='lmenuTD';
    theObj.style.background = "transparent";
  }
}

/*****************************/
/*    highlightLeftMenu      */
/*****************************/
function highlightLeftSubMenu(theObj)
{ if(lmenu_over.src)
  { theObj.className='lmenuSubTD2';
    theObj.style.background = "#E1E2E3";
  }
}

/*****************************/
/*     lowlightLeftMenu      */
/*****************************/
function lowlightLeftSubMenu(theObj)
{ if(lmenu_norm.src)
  { theObj.className='lmenuSubTD';
    theObj.style.background = "#DCDCDC";
  }
}
