$(function(){
		 $('#menus a').click(function() {
					var ul = $(this).parents('li:first').find('ul:first');
					if (ul.get(0)) {
							ul.toggle();							
							return false;
					}
					return true;
		});
		
		 $('#menus a').each(function() {
					var ul = $(this).parents('li:first').find('ul:first');
					if (ul.get(0))
						$(this).css('position', 'relative')
						$(this).html($(this).html() + '<div class="plus">+</div>')							
		});
				
		$('#current').find('ul:first').show();
		$('#current').parents('ul').show();
})
