jQuery().ready(function()
{
	$('.closed').live('click', function()
	{
		$('.open').each(function()
		{
			if($(this).hasClass('last'))
			{
				$(this).animate({ height: '29px', 'background-color': '#fff' }, 500).removeClass('open').addClass('closed');
				$(this).css({ 'background-image': 'url(/images/faq_bottom_closed.gif)', 'border-top': 'none' });
			}
			else
			{
				$(this).animate({ height: '30px', 'background-color': '#fff' }, 500).removeClass('open').addClass('closed');
			}
		});
		$(this).animate({ height: ($(this).children('p').height()+40), 'background-color': '#d1feaf' }, 500).removeClass('closed').addClass('open');
		if($(this).hasClass('last'))
		{
			$(this).css({ 'background-image': 'url(/images/faq_bottom_open.gif)', 'border-top': '1px solid #56ab16' });
		}
	});
	$('.open').live('click', function()
	{
		if($(this).hasClass('last'))
		{
			$(this).animate({ height: '29px', 'background-color': '#fff' }, 500).removeClass('open').addClass('closed');
			$(this).css({ 'background-image': 'url(/images/faq_bottom_closed.gif)', 'border-top': 'none' });
		}
		else
		{
			$(this).animate({ height: '30px', 'background-color': '#fff' }, 500).removeClass('open').addClass('closed');
		}
	});
});
