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