function initMenu() {
	  $('.accordion div').hide();
	  $('.accordion h3 div:first').show();
	  $('.accordion h3').click(
	    function() {
		  
	      var checkElement = $(this).next();
	      if((checkElement.is('div')) && (checkElement.is(':visible'))) {
		     //alert('visible');
	        return false;
	        }
	      if((checkElement.is('div')) && (!checkElement.is(':visible'))) {
	       	$('.accordion  div:visible').slideUp('normal');
	        checkElement.slideDown('normal');
	        //alert('not visible');
	        return false;
	        }
	      }
	    );
	  }
$(function() {
		initMenu();
});
