$(document).ready(function() {
//	var id = $(document.getElementById("test"));
//	alert (id);
	$(".faq-q").bind ("click", function (e) {
		var id = $(e.currentTarget);
		var child = id.children();
		if (child[1] && child[1].className=="faq-a") {
			$(child[1]).toggle ("slow");
		}
	} );
} ) ;
