$(document).ready(function() {
	$('#faq .list .item').bind('click', function(e) {

		thisObj = $(this);
		answearObj = $(this).find('.answear');
		if(answearObj.is(':hidden')) {
			thisObj.addClass('active');
                        faqid = thisObj.attr('id');
                        countFaq(faqid.substr(5,99));
			answearObj.slideDown();
		} else {
			answearObj.slideUp(function() {
				thisObj.removeClass('active');
			});
		}
	});
});