$( function()
{

	$(".faq_entry").each( function()
	{
		$(this).attr("class","faq_closed holder");
	
		$(this).find("b").toggle( function()
		{
			$(this).parent().attr("class","faq_open holder");
		}, function() {
			$(this).parent().attr("class","faq_closed holder");
		})		
		
	})
})

