﻿////function for the MouseOver event
//function mouseover(element_name)
//{
//    //alert ('Name ->' + element_name.toString());
//    document.getElementById(element_name).style.backgroundImage = 'url(../CommonImages/Menus/BTN_Blank_Lit.jpg)';
//}

////function for the MouseOut event
//function mouseout(element_name)
//{
//    document.getElementById(element_name).style.backgroundImage = 'url(../CommonImages/Menus/BTN_Blank.jpg)';
//}

//array of all the links on the page
var links = document.getElementsByTagName("a");
//loop through the array
for (var link in links) 
{
  //if the href attribute points to this page
  if (link.href == window.location.href) 
  {
    //add an onclick event that returns false (prevents link from being followed)
    link.onclick = function() { return false;}
  }
}



function ShowHideCurrentSection(imgId, obj) {
    obj = 'ctl00_Body_Content_' + obj;

    var menu = document.getElementById(obj);
    //var imageName = document.getElementById(imgId);

    if (menu.style.display == 'none') {
        menu.style.display = 'block';
        //imageName.src = "../Application/Images/Downarrow.png";
    }
    else {
        menu.style.display = 'none';
        //imageName.src = "../Application/Images/Rightarrow.png";
    }
}