/*
===============================================================
Forum Message Tree
===============================================================
AUTHOR			: Christian Wach <needle@haystack.co.uk>
LAST MODIFIED	: 29/02/2008
DEPENDENCIES	: jquery.js
---------------------------------------------------------------
NOTES

The thought here was to have a collapsible/expandable message
tree. It may not be worthwhile, though.

---------------------------------------------------------------
*/



/*
// When the page is ready
$(document).ready(function(){



	// hide replies initially
	//$("ol.comment_list ol.comment_list").hide();
	
	
	// add expand link if javascript is enabled
	$("ol.comment_list li").append(
		'<p class="read_replies"><a href="" title="See Replies">See Replies</a></p>'
	);
	
	// define expand action
	$("ol.comment_list li p.read_replies a").click(function(event){
	
		alert( $(this).parent().get(0).tagName );

		// hide/show
		//$(this).parent().next().toggle();
		
		// Stop the link click from doing its normal thing
		return false;

	});
	


});
*/

