
Drupal.behaviors.neova_faq_collapsable = function(context) {
	$('#block-views-faq-block_1 div.views-row', context).find('div:first').nextAll().hide().end().
	find('a').click(function() {
		$(this).parents('div:first').toggleClass('exposed').nextAll().slideToggle('fast');
		return false;
	});
}
