$(function() {
	$('ul.navigation')			
		.bind('expand', function(e) {
			$(this).addClass('expanded')
				.children('li.label')
					.attr('title', 'Hide links in this category')
					.one('click', function() { $(this).parent().trigger('collapse') })
					.end()
				.children('li:not(.label)').slideDown();
		})
		.bind('collapse', function(e) {
			$(this).removeClass('expanded')
				.children('li.label')
					.attr('title', 'Show links in this category')
					.one('click', function() { $(this).parent().trigger('expand') })
					.end()
				.children('li:not(.label)').slideUp();
		})			
		.bind('initialise', function(e) {
			$(this).removeClass('expanded')
				.children('li.label')
					.attr('title', 'Show links in this category')
					.one('click', function() { $(this).parent().trigger('expand') })
					.end()
				.children('li:not(.label)').hide();
		})			
		.trigger('initialise');
})

