function initMenu() {
  $('#acc1 ul').hide();
  
  $('#acc1 li.selected ul').slideDown('normal');
  // $('#acc1 li a').hover(
//   	
//   	function() {
//       var checkElement = $(this).next();
//       
//        if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
//         return false;
//         }
//        
//         
//       if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
//         $('#acc1 ul:visible').slideUp('normal');
//         checkElement.slideDown('normal');
//         return false;
//         }  
//        
//     } 
//     
//  );

$('#acc1>li').hover(
  function() {
    $(this).find('>ul').stop().height('auto').slideDown('normal'); // the height('auto') prevents the menu from memorizing an incorrect height-value forever when leaving the menu while the animation is running
  },
  function() {
    $(this).find('>ul').stop().slideUp('normal');
  }
);
	
}



$(document).ready(function() {initMenu();});