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');
}

$(document).ready(function() {
		// Add the onclick toggle event and then close them all to start with
		$('.faqs ul li > strong').each(function() {
			$(this).toggle(featOpen, featClose);
			});
		$('.faqs ul li ul li > strong').addClass('fakelink').each(featClose);
});

