﻿// JScript File

function menuHover(divID)
 {
    var oDiv = document.getElementById(divID);
    
    oDiv.style.visibility='visible';
 }

function menuUnhover(divID)
 {
    var oDiv = document.getElementById(divID);
    
    oDiv.style.visibility='hidden';
 }
 
function mainMenuHover(divID,oCell,iCell)
 {
    var oDiv = document.getElementById(divID);
    var iCell = document.getElementById(iCell);
    
    oDiv.style.visibility='visible';
    oCell.style.backgroundImage='url(images/menuBackground.png)';
    iCell.style.backgroundImage='url(images/menuBackground.png)';
    //oCell.style.borderBottom='solid 1px #ffffff';
    //iCell.style.borderBottom='solid 1px #ffffff';
 }

function mainMenuUnhover(divID,oCell,iCell)
 {
    var oDiv = document.getElementById(divID);
    var iCell = document.getElementById(iCell);

    oDiv.style.visibility='hidden';
    oCell.style.backgroundImage='';
    iCell.style.backgroundImage='';
    //oCell.style.borderBottom='';
    //iCell.style.borderBottom='';
 }

 function turnOn(oImg)
  {
   oImg.style.visibility="visible";
  }
  
 
 function turnOff(oImg)
  {
   oImg.style.visibility="hidden";
  }
  

