function initMenu(){$('#fragen p').hide();$('#fragen p:first').show();$('#fragen h4').click(function(){var checkElement=$(this).next();if((checkElement.is('p'))&&(checkElement.is(':visible'))){return false;} if((checkElement.is('p'))&&(!checkElement.is(':visible'))){$('#fragen p:visible').slideUp('normal');checkElement.slideDown('normal');return false;}});} $(document).ready(function(){initMenu();});