function faqShowHide(sectiontoshow){
	//This function will take our section to show, show it,
	//and make sure all of the rest of the FAQ sections are hidden!
	var sectionnames = new Array("whataremoogles", "whymoogles", "requests", "recruiting", "usetranslations", "willyoujoint", "yousuck", "randomquestion", "ulfuls");
	var sections = new Array();
	if(sectiontoshow){
		//Hide the entire contents of the FAQ first
		for(var i = 0; i < sectionnames.length; i++){
			sections[sectionnames[i]] = document.getElementById(sectionnames[i]);
			if(sectionnames[i] == sectiontoshow){
				sections[sectionnames[i]].style.display = "block";
			}
			else{
				sections[sectionnames[i]].style.display = "none";
			}
		}
	}
}

