$(function() {
	function featClose() {
		$(this)
		.parent('li') // select the 'li'
		.not( $('.normal li') )
		.addClass('close') // add the 'close' class
		.attr('title', 'Expand to view more details') // add an 'title' attribute for great accessibility
	}
	function featOpen() {
		$(this).parent('li').not( $('.normal li') ).removeAttr('class').attr('title', 'Collapse to hide details');
	}

	// Add the onclick toggle event and then close them all to start with
	$('ul.faq li > strong').each(function() {
		$(this).toggle(featOpen, featClose);
	}).each(featClose);
});
