function initMenu() {
 
/*$('#menu ul').hide();
$('#menu ul:first').show();*/
  
   var myFile = document.location.toString();
 if (myFile.match('ref=')) { // the URL contains an anchor
  // click the navigation item corresponding to the anchor
  var myAnchor = '#' + myFile.split('?ref=')[1];
  $('#menu ul' + myAnchor + '').show();
} else {
  // click the first navigation item
  //$('#menu ul:first').hide();
}  
  
 $('#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;
     }
   }
 );
 }