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;
}

