function init_collapse_menu() {
	
	
	$('ul.start-closed').hide();
	
	// Hide all lists nested within the main list
	$('ul.level-1 ul').hide();
	// Show the one that should be active (i.e. on the page for that menu, indicating a tertiary menu item)
	$('ul.level-1 ul.active-list').show();
	
	// Handle when a user clicks a list - to see if it has children to show/hide
	$('ul.level-1 li a').click(function() {
										
		var child = $(this).next();
		// Don't do anything because this list is already showing
		if((child.is('ul')) && (child.is(':visible'))) {
			
			var closingElement = $('ul.level-1 ul:visible');
			var closingElementBtn =  $('ul.level-1 ul:visible').prev();
			
			closingElement.slideUp('fast');
			
			// Change the "has more" indication to show that it's not expanded anymore
			if(closingElementBtn.hasClass('expanded-active')) {
				closingElementBtn.removeClass('expanded-active');
				closingElementBtn.addClass('collapsed-active');				
			} else {
				closingElementBtn.removeClass('expanded');
				closingElementBtn.addClass('collapsed');				
			}
			
			
			return false;
		}
		
		// The child list is not visible, so let's make the switch
		if((child.is('ul')) && (!child.is(':visible'))) {
			var closingElement = $('ul.level-1 ul:visible');
			// Retrieves the anchor tag (it immediately preceeds the ul)
			var closingElementBtn =  $('ul.level-1 ul:visible').prev();
			
			// Close the previous open menu
			closingElement.slideUp('fast');
			
			// Change the "has more" indication to show that it's not expanded anymore
			if(closingElementBtn.hasClass('expanded-active')) {
				closingElementBtn.removeClass('expanded-active');
				closingElementBtn.addClass('collapsed-active');				
			} else {
				closingElementBtn.removeClass('expanded');
				closingElementBtn.addClass('collapsed');				
			}
			
			// Open the new menu
			child.slideDown('fast');
			
			// Change the "has more" indication to show that it is open
			if($(this).hasClass('collapsed-active')) {	
				$(this).removeClass('collapsed-active');
				$(this).addClass('expanded-active');
			} else {
				$(this).removeClass('collapsed');
				$(this).addClass('expanded');
			}
		

			return false;
		}
		
		
	});
	/*$('ul.level-1 li a').hover(function() {
										
		var child = $(this).next();
		// Don't do anything because this list is already showing
		if((child.is('ul')) && (child.is(':visible'))) {
			return false;
		}
		
		// The child list is not visible, so let's make the switch
		if((child.is('ul')) && (!child.is(':visible'))) {
			var closingElement = $('ul.level-1 ul:visible');
			// Retrieves the anchor tag (it immediately preceeds the ul)
			var closingElementBtn =  $('ul.level-1 ul:visible').prev();
			
			// Close the previous open menu
			closingElement.slideUp('fast');
			
			// Change the "has more" indication to show that it's not expanded anymore
			if(closingElementBtn.hasClass('expanded-active')) {
				closingElementBtn.removeClass('expanded-active');
				closingElementBtn.addClass('collapsed-active');				
			} else {
				closingElementBtn.removeClass('expanded');
				closingElementBtn.addClass('collapsed');				
			}
			
			// Open the new menu
			child.slideDown('fast');
			
			// Change the "has more" indication to show that it is open
			if($(this).hasClass('collapsed-active')) {	
				$(this).removeClass('collapsed-active');
				$(this).addClass('expanded-active');
			} else {
				$(this).removeClass('collapsed');
				$(this).addClass('expanded');
			}
		

			return false;
		}
		
		
	}, function() {});*/
}
