/*
jQuery routine to show a FAQ item and hide the rest.
*/
$(document).ready(function () 
	{
		$('#toggler h1').click(function() 
			{
				$(this).css("color","#707");
				var text = $(this).next("div");
				if (text.is(':hidden')) 
					{
						text.slideDown('250');
					} 
				else 
					{
						text.slideUp('250');
					}
			});
	});


$(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('+');
			});
	});

