$('#main_style').after('<link rel="stylesheet" type="text/css" media="all" href="http://www.naturaltherapypages.com.au/discussion/structure/onload"/>');

var $url = document.URL.split("#");

$(document).ready(function(){	

	if( $(".categories .onload_hide").length > 1  ){$("#hide_show_categories").show();}

	if( $url[1] == 'show_all' ){
				
		$(".comment").removeClass("onload_last");
		$(".comment").show();
		$("#show_hide_comments_text").empty().append("Close");

		$("#show_hide_comments").toggle(function(){
			$(".comment").next().next().next().fadeOut();
			$(".comment").next().next().addClass("onload_last");
			$("#show_hide_comments_text").empty().append("Show all");
			return false;
		},function(){
			$(".comment").removeClass("onload_last");
			$(".comment").fadeIn();
			$("#show_hide_comments_text").empty().append("Close");
			return true;
		});

	}else{

		$("#show_hide_comments").toggle(function(){
			$(".comment").removeClass("onload_last");
			$(".comment").fadeIn();
			$("#show_hide_comments_text").empty().append("Close");
			return true;
		},function(){
			$(".comment").next().next().next().fadeOut();
			$(".comment").next().next().addClass("onload_last");
			$("#show_hide_comments_text").empty().append("Show all");
			return false;
		});

	}



	$("#hide_show_categories").toggle(function(){
                $(".categories li").slideDown();
		$("#hide_show_categories a").empty().append("Hide");
                return true;
        },function(){
		$(".categories li").not(".show").slideUp();
                $("#hide_show_categories a").empty().append("Show all");
                return false;
        });

});
