
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;

// Login function
function doLoginRefresh()
{
	if (document.Remote.AccessID.value != "")
		{
		setTimeout('document.Remote.reset()', 20000);
		document.Remote.AccessID.value=document.Remote.AccessID.value;
		return true;
		}
	else
		{
		alert("\n Please Enter a valid Access ID.  Thank you!\n\n\t"); 
		return false;
		}	
}

//Blater your leaving FSBCT.com

function bye() {
alert('You are now leaving the Farmington Bank site.  Farmington\n Bank endorses but makes no warranty as to the accuracy\n of the information contained within the site you are about to\n enter, and assumes no liability for damages related to their use.');
}

//Don't send personal info in e-mails.

function email() {
alert('Farmington Bank asks that you refrain from sending\n confidential information such as your Social Security number\n or Account number through email. If this information is needed,\n please provide it via telephone or in person.');
}


