function initMenu() {
  $('.active1 ul').hide();
  $('.active1 ul.current').show();
  $('.active1 li a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('.active1 ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
		this.click(function(e){e.stopPropagation();}); // @Mesame : Added to stop actions bottling up at the DOM 
        //return false;
        }
	else if( (checkElement.is(':visible')))
	{
	 $('.active1 ul:visible').slideUp('normal');
	 this.click(function(e){e.stopPropagation();});// @Mesame : Added to stop actions bottling up at the DOM 
	}
      }
    );
  }
$(document).ready(function() {initMenu();});