function visit(id){
	var tmpQuestionName = '#faq_q_' + id;
	var tmpAnswerName = '#faq_a_' + id;

	if(!$(tmpQuestionName).hasClass('visited')){
		$(tmpQuestionName).addClass('visited');
	}

	$('.faq_a').hide('slow');

	$('.faq_q').removeClass('faq_q_active');
	$(tmpQuestionName).addClass('faq_q_active');


	if($(tmpAnswerName).css('display') == 'none'){
		$(tmpAnswerName).show('slow');
	}

	return false;
}

function unvisit(id){
	var tmpAnswerName = '#faq_a_' + id;

	$(tmpAnswerName).hide('slow');

	return false;
}