//var navTimer;
function showPartner(thisPartner) {
	// First, find container DIV
	var node = document.getElementById("partnerPullouts");
	// Cycle through container to hide all DIVs
	var children = node.childNodes;
	var len = children.length;
	for (var i = 0; i<len; i++) {
		children[i].style.display = "none";
	}
	// Then, show the desired subnav
	if (thisPartner != null) {
		document.getElementById(thisPartner).style.display = "block";
	}
	//navTimer = setTimeout(function() { document.getElementById(thisSubNav).style.visibility = "hidden"; }, 3500);
}
/*
function clearNavTimer() {
  clearTimeout(navTimer);
}
function hideSubNav(thisSubNav) {
	navTimer = setTimeout(function() { document.getElementById(thisSubNav).style.visibility = "hidden"; }, 1500);
}
*/

