// JavaScript Document

<!-- javascript hack to get IE/Win to recognize mouseover/mouseout -->
<!-- on LI element for drop down menu  (www.alistapart.com)        -->
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
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", "");
   }
   }
  }
 }
}
window.onload=startList;

<!-- Pop-up window confirmation -->
function confirmation() {
    var answer = confirm("For 'School/Unit', select 'Student Affairs' from the drop-down menu.  For 'Account', select 'International Students'. ")
     if (answer){
	   alert('You will now be connected to the Online Giving site.');
       window.location = "http://www.bconnectalumni.binghamton.edu/Giving/index.asp?School=14";
     }
}