function initMenu() {
  $('#menu ul').hide();
  $('#menu #active ul:first').show();
  $('#menu li a').click(
    function() {
      var checkElement = $(this).next();  
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('#menu ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  
  $('#menu2 ul').hide();
  $('#menu2 #active ul:first').show();
  $('#menu2 li a').click(
    function() {
      var checkElement = $(this).next();  
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('#menu2 ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    ); 
  }
$(document).ready(function() {initMenu();});

var currentItem = 'empty';

function toggleSubNavItems(divId){
	
	if(currentItem != "empty" ){ 
		if(currentItem == divId){
			document.getElementById(divId).style.display = "none";
			currentItem = 'empty';
		}else{
			document.getElementById(divId).style.display = "block";
			document.getElementById(currentItem).style.display = "none";
			currentItem = divId;
		}
	}else{ 
		document.getElementById(divId).style.display = "block";
		currentItem = divId;
	}
}
