Alttaki sitede üstte yazan ALL CATEGORIES'e tıklayınca açılıyor.Ben hep açık durmasını istiyorum.Altta verdiğim kodlar ile nasıl yapabilirim?







<script type="text/javascript">
	$('document').ready(function(){
		$('#megamenu-responsive-root li.parent').prepend('<p>+</p>');
		
		$('.menu-toggle').click(function(){
			$('.root').toggleClass('open');
		});
		
		$('#megamenu-responsive-root li.parent > p').click(function(){

			if ($(this).text() == '+'){
				$(this).parent('li').children('ul').slideDown(300);
				$(this).text('-');
			}else{
				$(this).parent('li').children('ul').slideUp(300);
				$(this).text('+');
			}
			
		});
	});
	</script>