AjaxQuestions ={
	divArray: [],
	fontArray: [],
	generateArray: function(){
		this.divArray = document.getElementById("faq_style").getElementsByTagName("div");
		this.fontArray = document.getElementById("faq_style").getElementsByTagName("font");
	},
	showQuestion: function(question){
		question--;
		this.hideQuestions();
		this.divArray[question].style.display = "block";
		this.fontArray[question].style.fontWeight = "bold";
		this.fontArray[question].style.color = "#990000";
		return false;
	},
	hideQuestions: function(){
		var length = this.divArray.length;
		for( i=0; i < length; i++){
			this.divArray[i].style.display = "none";
			this.fontArray[i].style.fontWeight = "";
			this.fontArray[i].style.color = "";
		}
	}
	
}
