$(document).ready( function() {
	$('.collapsible').each(function() {
		ishidden = $.cookie($(this).attr('id'));
		if(ishidden=='hidden') {
			$(this).addClass('closed').children('.content').hide();
		}
		$('.hidden', this).hide();
		$('.trigger', this).css('cursor','pointer').attr('title','Click to Toggle this Panel');
		$('.trigger', this).click( function() {
			val = $(this).parents('dl').attr('id');
			$(this).next('.content:visible').each(function() {
				$.cookie(val,'hidden');
				$(this).slideUp();
				$(this).parents('dl').addClass('closed');
			});
			$(this).next('.content:hidden').each(function() {
				$.cookie(val,'visible');
				$(this).slideDown();
				$(this).parents('dl').removeClass('closed');
			});
		});
	});
});