function hideDivs() {		// Get the general FAQ Groups	var facilities = document.getElementById("FacilitiesFaq");	var process = document.getElementById("ProcessFaq");	var rates = document.getElementById("RatesFaq");	var dining = document.getElementById("DiningFaq");	var moving = document.getElementById("MovingFaq");	var additional = document.getElementById("AdditionalFaq");		//Get the Instructions paragraph	var instructions = document.getElementById("FaqInstructions");		// Get the document's ListItems	var listItems = document.getElementsByTagName("li");		// Loop through the list items and finde the Answers then Hide them	for (i = 0; i < listItems.length; i++) {		if (listItems[i].className == "faqAnswer") {				listItems[i].style.display="none";		}	}		// Now hide the FAQ Groups	facilities.style.display="none";	process.style.display="none";	rates.style.display="none";	dining.style.display="none";	moving.style.display="none";	additional.style.display="none";		// add our cool arrow graphic	var arrow = document.createElement("img");	arrow.setAttribute("src","images/decor/startarrow.gif");	arrow.setAttribute("alt","arrow graphic to indicate FAQ Category location");	instructions.appendChild(arrow);	// then add the "block" display to the Instructions	instructions.style.display="block";	}function showBlock(blockLink) {	// Get the general FAQ Groups	var facilities = document.getElementById("FacilitiesFaq");	var process = document.getElementById("ProcessFaq");	var rates = document.getElementById("RatesFaq");	var dining = document.getElementById("DiningFaq");	var moving = document.getElementById("MovingFaq");	var additional = document.getElementById("AdditionalFaq");		//Get the Instructions paragraph	var instructions = document.getElementById("FaqInstructions");		// Get the rel from the a tag	if(blockLink.rel) {		var showThis = blockLink.rel;	}	else {		var showThis = blockLink;	}		//Now get that block	var faqBlock = document.getElementById(showThis);		// Hide other blocks if visible	if (instructions.style.display == "block") {		instructions.style.display="none";			//Now show new block		faqBlock.style.display="block";	}	if (facilities.style.display == "block") {		facilities.style.display="none";			//Now show new block		faqBlock.style.display="block";	}	else if (process.style.display == "block") {		process.style.display="none";			//Now show new block		faqBlock.style.display="block";	}	else if (rates.style.display == "block") {		rates.style.display="none";			//Now show new block		faqBlock.style.display="block";	}	else if (dining.style.display == "block") {		dining.style.display="none";			//Now show new block		faqBlock.style.display="block";	}	else if (moving.style.display == "block") {		moving.style.display="none";			//Now show new block		faqBlock.style.display="block";	}	else if (additional.style.display == "block") {		additional.style.display="none";			//Now show new block		faqBlock.style.display="block";	}		// else just show new block	else {		faqBlock.style.display="block";	}}function showAnswer(blockLink) {		// Get the rel from the a tag	if(blockLink.rel) {		var showThis = blockLink.rel;	}	else {		var showThis = blockLink;	}		//Now get that block	var faqBlock = document.getElementById(showThis);		//Now show that block	faqBlock.style.display="block";}