//Javascript to handle FAQs
function clickHandle1(evt) {
	var evt = evt || window.event; // event object
	var target = evt.target || window.event.srcElement; // event target
	if(target.id == '' || target.id != "question" || target.id == null)
		target = getParent(target, "question");
	target.style.display = "none";
	lastNode = get_lastchild(target.parentNode);
	lastNode.style.display="block";
}
function clickHandle2(evt) {
	var evt = evt || window.event; // event object
	var target = evt.target || window.event.srcElement; // event target
	if(target.id == '' || target.id != "answer" || target.id == null)
		target = getParent(target, "answer");
	target.style.display = "none";
	firstNode = get_firstchild(target.parentNode);
	firstNode.style.display="block";
}
function getParent(n, cat){
	newTarget = n.parentNode;
	while(newTarget.id != cat){
		newTarget = newTarget.parentNode;
	}
	return newTarget;
}
function get_lastchild(n){
	x=n.lastChild;
	while (x.nodeType!=1){
  		x=x.previousSibling;
  	}
	return x;
}
function get_firstchild(n){
	x=n.firstChild;
	while (x.nodeType!=1){
  		x=x.nextSibling;
  	}
	return x;
}
//End FAQs here

//JS to format the display of Right menu block round corners
function formatMenu(){
	document.getElementById("menu_find2").firstChild.className='Uno';
	document.getElementById("menu_find2").lastChild.className='Cuatro';
}       