
/* ##############################################
 * ##### mp_static_menue jQuery Navigation ######
 * ############################################## */
/*
 * 
 * 
 * interessiertnimanden muss wech wenn auf selbem level wie active
 */

$(document).ready(function() {
	$('#navL1 ul').not('li.active ul').hide();
	$('#navL1 ul li ul').not('#navL1 ul li.active ul').hide();
	$('.lv01').css('outline','none');


	//open menu onclick level 01
	$('.lv01').click( function () {	
		$(this).parent('li').addClass('active');
		$('#navL1 li.active').not($(this).parent('li')).removeClass('active');
		$(this).next('ul').slideToggle('slow');
		$('#navL1 li ul').not($(this).next('ul')).hide('slow');
		if ( $('#mostPopular').is(':hidden') ) { 
			$('#mostPopular').show('normal');	
		}
		return false;
		
	});
		
	$('.lv02a').click(function() {
		$(this).parent('li').addClass('active');
		$('.navSub1 li.active').not($(this).parent('li')).removeClass('active');
		$('.navSub1 li.active ul').slideToggle('slow');
		$('.navSub1 li ul').not($('.navSub1 li.active ul')).hide('slow');
		$('#mostPopular').toggle("slide", {direction: "down"});		
		
		return false;
		
	});

	
});



