Drupal.behaviors.neova_contact_collapsable = function(context) {
	var $contacts = $('#block-views-person-block_3 .views-row div.header', context);	
	if($contacts.length > 1) {
		$contacts.each(function(i) {
				var self = this;
				$(this).html($('<a href="#"></a>').text($(self).text()));
			}).nextAll().hide().end().children().
		click(function() {
				$(this).parent().nextAll().slideToggle('fast').end().end().toggleClass('exposed');
				return false;
			});
		/*.eq(0).parent().nextAll().show().end().end().toggleClass('exposed');*/
	}
	else {
		$contacts.slideUp('slow');
	}
}
