$(function() {
	$(".node-faqlist h2").bind('click',function(){
/*
		if ($(this).parent().hasClass('active')) {
			$("#leftbar,#center,#rightbar").height("auto");
			$(".view-FAQmine",$(this).parent()).slideUp("normal",function() {
				$(this).parent().addClass("active");
				$(".node-faqlist .active").removeClass("active");
			});
		} else {
			$(".active .view-FAQmine").slideUp("normal",function(){$(".node-faqlist .active").removeClass("active")});
			$("#leftbar,#center,#rightbar").height("auto");
			$(".view-FAQmine",$(this).parent()).slideDown(function() {
				$(this).parent().addClass("active");
				$("#leftbar,#center,#rightbar").vjustify();
			});
		}
*/
		$(this).parent().toggleClass("active");
	});
});