// JavaScript by PrizeByte
$(function() {
	ghl.hideall(false); 
	$("#fl > div").prepend("<a class='more' href='#'>More &gt;&gt;</a>")
							.click(function(){
								ghl.tstoggle($(this));
							});
});

ghl = {
	hideall:function(setmore){
		$("#fl > div").children("span,p,div").addClass("jhidn");
		if(setmore) $("#fl .more").html("More &gt;&gt;");
	},
	tstoggle:function(el){
		if (el.children("span").is(".jhidn")){
			this.hideall(true);
			el.children("span,p,div").removeClass("jhidn");
			el.children(".more").html("&lt; &lt; Less");
		}
		else
		{
			this.hideall(true);
		}
	}
	
};
