$(document).ready(function() { 
	var arrText = {};
$("h2.term").each(function() {
	        // store a refrence to the innerHTML in a array or something.
	        if(!arrText[(this.innerHTML.length)]) {
	                arrText[(this.innerHTML.length)] = true;
	        } else {
	                $(this).hide();
	        }
});
	$("h3.faq_advise").addClass("clickable faq_closed");   
	$("div.faq_content").hide();
	$("h3.faq_advise").addClass("faq_closed");    
	$("h3.faq_advise").click(function() {	
		var $this = $(this);
		if( $this.is('.faq_open') ) {
	    	$this.next().slideUp("fast	");
	    	$(this).removeClass('faq_open');
	    	$(this).addClass('faq_closed');
		}
		    else {
	        $this.next().slideDown("fast");
	        $(this).removeClass('faq_closed');
	        $(this).addClass('faq_open');
		    }
		     return false;
	});
});