function faq_q() {
	this.class_opened		= 'soru_open';//opened div class
	this.class_closed		= 'soru';//closed div class

	this.current_q;
}

faq_q.prototype.showhide = function(obj) {
	if(this.current_q && this.current_q != obj) {
		this.hide();
	}

	if(obj.className == this.class_opened) {
		this.hide();
	} else {
		this.show(obj);
	}
}


faq_q.prototype.show = function(obj) {
	obj.className		= this.class_opened;
	this.current_q		= obj;
}


faq_q.prototype.hide = function() {
	this.current_q.className	= this.class_closed;
	this.current_q				= null;
}


