$(function() {
	// hide all the sub-menus
	$("span.toggle").prepend("+ "); 
	$("span.toggle").next().hide();
	$("span.toggle").next().next().next().hide();
	$("span.toggle").click(function() {
		$(this).next().toggle(0);
		$(this).next().next().slideToggle(200);
		$(this).next().next().next().toggle(0);
		var v = $(this).html().substring( 0, 1 );
		if ( escape(v) == '+' )
		{
			$(this).html( "-" + $(this).html().substring( 1 ) );
		}	
		else if ( escape(v) == '-' )
		{
			$(this).html( "+" + $(this).html().substring( 1 ) );
		}	
	});	
});