<!--
browsok = (((navigator.appName == "Netscape")
&& (parseInt(navigator.appVersion) >= 3))
|| ((navigator.appName == "Microsoft Internet Explorer")
&& (parseInt(navigator.appVersion)>=3)));
if(browsok){
  // MouseOn   
  // Note: the 88 is for the WIDTH, 25 is for the HEIGHT
     first1 = new Image(271, 49);
     first1.src = "images/index3loanson.jpg";
     second1 = new Image(271, 48);
     second1.src = "images/index6serviceson.jpg";
     third1 = new Image(271, 54);
     third1.src = "images/index9resourceson.jpg";
     fourth1 = new Image(271, 52);
     fourth1.src = "images/index12faqson.jpg";
     fifth1 = new Image(271, 46);
     fifth1.src = "images/index15contactuson.jpg";
     
  // MouseOff
  // Note: the 88 is for the WIDTH, 25 is for the HEIGHT
     first0 = new Image(271, 49);
     first0.src = "images/index3loans.jpg";
     second0 = new Image(271, 48);
     second0.src = "images/index6services.jpg";
     third0 = new Image(271, 54);
     third0.src = "images/index9resources.jpg";
     fourth0 = new Image(271, 52);
     fourth0.src = "images/index12faqs.jpg";
     fifth0 = new Image(271, 46);
     fifth0.src = "images/index15contactus.jpg";
}
function BNB_mouseon(n){
     if(browsok){
          imageON = eval(n + "1.src");
          document [n].src = imageON;
          }
}
function BNB_mouseoff(n){
     if(browsok){
imageOFF = eval(n + "0.src");
     document [n].src = imageOFF;
          }
}
// -->