/* 
===============================================================
Show/Hide FAQ Items
===============================================================
AUTHOR			: Christian Wach <needle@haystack.co.uk>
LAST MODIFIED	: 14/12/2009
REQUIRES		: jquery.js
---------------------------------------------------------------
*/

jQuery(document).ready( function($) {

	// hide all content
	$('div.toggle').hide();
	
	// get headings
	var headings = $("#page-faqs div#wrapper_body h2");
	
	// set pointer 
	headings.css( 'cursor', 'pointer' );

	// all comment page headings toggle slide
	headings.click(function(){
	
		// toggle next item_body
		$(this).nextAll('div.toggle').slideToggle();
		
	});
	
});
