function startList() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav1");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}

	function donateLink() {
		var num=Math.floor(Math.random()*2);
		if (num == 0) {
			location.href = "http://www.womenforwomen.org/scripts/donate-test.php";
			// formerly location.href = "http://www.womenforwomen.org/thank-you-for-your-support.php";
		}
		else {
			location.href = "http://www.womenforwomen.org/scripts/donate-test.php";
			// formerly location.href = "http://www.womenforwomen.org/thank-you-for-your-support.php";
		}
		
	}
	
	
	function sponsorLink() {
		var num=Math.floor(Math.random()*2);
		if (num == 0) {
			location.href = "http://www.womenforwomen.org/scripts/sponsor-test.php";
			// formerly location.href = "https://mywomenforwomen.org/donation/sponsor-a-woman.php?wfw=webgenSP";
		}
		else {
			location.href = "http://www.womenforwomen.org/scripts/sponsor-test.php";
			// formerly location.href = "http://www.womenforwomen.org/thank-you-for-your-support.phpT";
		}
		
	}