/*
jQuery routine to show a FAQ item and hide the rest.
*/
$(document).ready(function () 
	{
		$('#toggler li').click(function () 
			{
				var text = $(this).children('div');
				if (text.is(':hidden')) 
					{
						text.slideDown('250');
						$(this).children('span').html('&#8211;');		
					} 
				else 
					{
						text.slideUp('200');
						$(this).children('span').html('+');		
					}
			});
	});


$(document).ready(function()
	{
		/* http://forum.jquery.com/topic/need-help-with-toggle-s-one-button-to-expand-all */
		$(".trigger").toggle(function()
			{
				$(this).addClass("active");
				$(this).children('span').html('Collapse');
			}, 
		function () 
			{
				$(this).removeClass("active");
				$(this).children('span').html('Expand');
			});

		$(".trigger").toggle(function()
			{
				$("#toggler li div").slideDown(); 
				$(this).next("#toggler li div");
				$("#toggler li").children('span').html('&#8211;');
			}, 
		function () 
			{
				$("#toggler li div").slideUp();
				$(this).next("#toggler li div");
				$("#toggler li").children('span').html('+');
			});
	});
