$(function () {
	$('.navigation_showCompleteCombinedNavigation li.sub span').click(function () {
		
		$(this).toggleClass('open');
		$(this).parent().find('ul:first').slideToggle('medium');
		that = this
		
	
		if (!$(this).parent().hasClass('on') && $(this).hasClass('open')) {
			$(this).parent().parent().find('.open').each(function(){
				if ($(this).index($(that)) != 0 && !$(this).parent().hasClass('on')) {
					$(this).removeClass('open');
					$(this).parent().find('ul:first').slideUp('medium');
				}
				
			});
		} else if ($(this).parent().hasClass('on') && $(this).hasClass('open')) {
			$(this).parent().parent().find('.open').each(function(){
				if ($(this).index($(that)) != 0 && !$(this).parent().hasClass('on')) {
					$(this).removeClass('open');
					$(this).parent().find('ul:first').slideUp('medium');
				}
				
			});
		}
	});
});
