/* 
===============================================================
Show/Hide All Comments
===============================================================
AUTHOR			: Christian Wach <needle@haystack.co.uk>
LAST MODIFIED	: 21/11/2008
REQUIRES		: jQuery
---------------------------------------------------------------
*/
jQuery(document).ready(function(){

	// hide all comment content
	jQuery('ul#all_comments_listing div.item_body').hide();
	
	// all comment page headings toggle slide
	jQuery("ul#all_comments_listing h3").click(function(){
	
		// toggle next item_body
		jQuery(this).nextAll('div.item_body').slideToggle();
		
	});
	
});

