/* 
===============================================================
Show/Hide All Comments
===============================================================
AUTHOR			: Christian Wach <needle@haystack.co.uk>
LAST MODIFIED	: 21/03/2009
REQUIRES		: jquery.js
---------------------------------------------------------------
*/

$(document).ready( function() {

	// hide all comment content
	$('ul.all_comments_listing div.item_body').hide();
	
	// set pointer 
	$("ul.all_comments_listing h3").css( 'cursor', 'pointer' );

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

