window.name = "brentkessel_main";

function navigationFunction() {
  if (document.all&&document.getElementById) {
    nav = document.getElementById("navigation");
    for (i=0; i<nav.childNodes.length; i++) {
      node = nav.childNodes[i];
      if (node.nodeName=="LI") {
        node.onmouseover=function() {
          this.className+=" over";
        }
        node.onmouseout=function() {
          this.className=this.className.replace(" over", "");
        }
      }
    }
  }
}

window.onload=function() {
	window.name = "brentkessel_main";
}

function viewQuiz() {
  window.open("http://quiz.brentkessel.com/financial_archetype_top.php","quizwindow");
}

