$(document).ready(function(){

	fr_expand();
	
	function fr_expand() {
		//first hide all sub ul of this ul element
		add_expander_class();
		$('.fr_xpander').click(function(event){
			$(this).next('ul').toggle();
			$(this).toggleClass("display_ul");
			$(this).toggleClass("hide_ul");
	    	$(".display_ul").attr("title","Click to expand");
	    	$(".hide_ul").attr("title","Click to hide");
			
		}
		);
	}
	
	
	function add_expander_class(ul_el) {
		
		$('h3 + ul').addClass("xpander_ul");
		$('h3 + ul').hide();
		$('.xpander_ul').prev('h3').addClass("fr_xpander");
		$('.xpander_ul').prev('h3').addClass("display_ul");
	    $(".display_ul").attr("title","Click to expand");
	}
	

});



