$('a.faq_more').click(function(e) {
	e.preventDefault();
	var id = $(this).attr("id").replace('faq_more_','');

	if ($('a#faq_more_' +id).attr("innerHTML")=="Read More")
	{
		$('span#faq_hidden_' +id).show();
		$('a#faq_more_' +id).attr("innerHTML","Less");		
	}
	else
	{
		$('span#faq_hidden_' +id).hide();
		$('a#faq_more_' +id).attr("innerHTML","Read More");
	}
			
	/*$('span#faq_hidden_' +id).hideToggle(200, function() {
		if ($('a#faq_more_' +id).attr("innerHTML")=="Read More")
			$('a#faq_more_' +id).attr("innerHTML","Less");
		else
			$('a#faq_more_' +id).attr("innerHTML","Read More");
	});*/
});


