
jQuery(document).ready(function() {

	jQuery(".questions ol>li h4 a").click(function() {
		var showhide = (jQuery(this).parent().next("div").css("display") == 'none') ? 'block' : 'none';

		/*just show...*/
		//jQuery(this).parent().next("div").css( { display: showhide });
	
		/*animate...*/
		if (showhide == 'block')
			jQuery(this).parent().next("div").animate({opacity:'show', height:'show'},'fast');
		else {
			jQuery(this).parent().next("div").animate({opacity:'hide', height:'hide'},'fast');
		}
			
		return false;
	});

});