<!--
     <!-- this checks for the version of netscape or IE that a user has.-->
     var isNS3 = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) <= 3));
     var intWidth = 650;
     var intHeight = 400;
     if (isNS3) {
     intWidth += 25;
     intHeight += 30;
     }
     <!--opens the window after checking for version of Netscape/IE -->
     function golaunchdemo() {
     window.open('http://www.checkfree.com/promos/equifax/sweepstakes.htm',
     'new','toolbar=no,scrollbars=no,location=no,directories=no,status=no,menubar=no,height=' + intHeight + ',width=' + intWidth);
     }

     //-->

<!-- Begin
var isDOM = (document.getElementById ? true : false); 
var isIE4 = ((document.all && !isDOM) ? true : false);
var isNS4 = (document.layers ? true : false);
function getRef(id) {
if (isDOM) return document.getElementById(id);
if (isIE4) return document.all[id];
if (isNS4) return document.layers[id];
}
function getSty(id) {
return (isNS4 ? getRef(id) : getRef(id).style);
} 
// Hide timeout.
var popTimer = 0;
// Array showing highlighted menu items.
var litNow = new Array();
function popOver(menuNum, itemNum) {
clearTimeout(popTimer);
hideAllBut(menuNum);
litNow = getTree(menuNum, itemNum);
changeCol(litNow, true);
targetNum = menu[menuNum][itemNum].target;
if (targetNum > 0) {
thisX = parseInt(menu[menuNum][0].ref.left) + parseInt(menu[menuNum][itemNum].ref.left);
thisY = parseInt(menu[menuNum][0].ref.top) + parseInt(menu[menuNum][itemNum].ref.top);
with (menu[targetNum][0].ref) {
left = parseInt(thisX + menu[targetNum][0].x);
top = parseInt(thisY + menu[targetNum][0].y);
visibility = 'visible';
      }
   }
}
function popOut(menuNum, itemNum) {
if ((menuNum == 0) && !menu[menuNum][itemNum].target)
hideAllBut(0)
else
popTimer = setTimeout('hideAllBut(0)', 500);
}
function getTree(menuNum, itemNum) {
itemArray = new Array(menu.length);
while(1) {
itemArray[menuNum] = itemNum;
if (menuNum == 0) return itemArray;
itemNum = menu[menuNum][0].parentItem;
menuNum = menu[menuNum][0].parentMenu;
   }
}
function changeCol(changeArray, isOver) {
for (menuCount = 0; menuCount < changeArray.length; menuCount++) {
if (changeArray[menuCount]) {
newCol = isOver ? menu[menuCount][0].overCol : menu[menuCount][0].backCol;
with (menu[menuCount][changeArray[menuCount]].ref) {
if (isNS4) bgColor = newCol;
else backgroundColor = newCol;
         }
      }
   }
}
function hideAllBut(menuNum) {
var keepMenus = getTree(menuNum, 1);
for (count = 0; count < menu.length; count++)
if (!keepMenus[count])
menu[count][0].ref.visibility = 'hidden';
changeCol(litNow, false);
}
function Menu(isVert, popInd, x, y, width, overCol, backCol, borderClass, textClass) {
this.isVert = isVert;
this.popInd = popInd
this.x = x;
this.y = y;
this.width = width;
this.overCol = overCol;
this.backCol = backCol;
this.borderClass = borderClass;
this.textClass = textClass;
this.parentMenu = null;
this.parentItem = null;
this.ref = null;
}

function Item(text, href, frame, length, spacing, target) {
this.text = text;
this.href = href;
this.frame = frame;
this.length = length;
this.spacing = spacing;
this.target = target;
this.ref = null;
}
function writeMenus() {
if (!isDOM && !isIE4 && !isNS4) return;
for (currMenu = 0; currMenu < menu.length; currMenu++) with (menu[currMenu][0]) {
var str = '', itemX = 0, itemY = 0;
for (currItem = 1; currItem < menu[currMenu].length; currItem++) with (menu[currMenu][currItem]) {
var itemID = 'menu' + currMenu + 'item' + currItem;
var w = (isVert ? width : length);
var h = (isVert ? length : width);
if (isDOM || isIE4) {
str += '<div id="' + itemID + '" style="position: absolute; left: ' + itemX + '; top: ' + itemY + '; width: ' + w + '; height: ' + h + '; visibility: inherit; ';
if (backCol) str += 'background: ' + backCol + '; ';
str += '" ';
}
if (isNS4) {
str += '<layer id="' + itemID + '" left="' + itemX + '" top="' + itemY + '" width="' +  w + '" height="' + h + '" visibility="inherit" ';
if (backCol) str += 'bgcolor="' + backCol + '" ';
}
if (borderClass) str += 'class="' + borderClass + '" ';
str += 'onMouseOver="popOver(' + currMenu + ',' + currItem + ')" onMouseOut="popOut(' + currMenu + ',' + currItem + ')">';
str += '<table width="' + (w - 8) + '" border="0" cellspacing="0" cellpadding="' + (!isNS4 && borderClass ? 3 : 0) + '"><tr><td align="left" height="' + (h - 7) + '">' + '<a class="' + textClass + '" href="' + href + '"' + (frame ? ' target="' + frame + '">' : '>') + text + '</a></td>';
if (target > 0) {
menu[target][0].parentMenu = currMenu;
menu[target][0].parentItem = currItem;
if (popInd) str += '<td class="' + textClass + '" align="right">' + popInd + '</td>';
}
str += '</tr></table>' + (isNS4 ? '</layer>' : '</div>');
if (isVert) itemY += length + spacing;
else itemX += length + spacing;
}
if (isDOM) {
var newDiv = document.createElement('div');
document.getElementsByTagName('body').item(0).appendChild(newDiv);
newDiv.innerHTML = str;
ref = newDiv.style;
ref.position = 'absolute';
ref.visibility = 'hidden';
}
if (isIE4) {
document.body.insertAdjacentHTML('beforeEnd', '<div id="menu' + currMenu + 'div" ' + 'style="position: absolute; visibility: hidden">' + str + '</div>');
ref = getSty('menu' + currMenu + 'div');
}
if (isNS4) {
ref = new Layer(0);
ref.document.write(str);
ref.document.close();
}

for (currItem = 1; currItem < menu[currMenu].length; currItem++) {
itemName = 'menu' + currMenu + 'item' + currItem;
if (isDOM || isIE4) menu[currMenu][currItem].ref = getSty(itemName);
if (isNS4) menu[currMenu][currItem].ref = ref.document[itemName];
   }
}
with(menu[0][0]) {
ref.left = x;
ref.top = y;
ref.visibility = 'visible';
   }
}
var menu = new Array();
var defOver = '#FF0000', defBack = '#0000CC';
var defLength = 22;
menu[0] = new Array();
menu[0][0] = new Menu(true, '', 15, 85, 115, '#FF0000', '#0000CC', '', 'itemText');
menu[0][1] = new Item('  Service Brochure', '#', '', 22, 0, 3);
menu[0][2] = new Item('  Branch Info', '#', '', 22, 0, 1);
menu[0][3] = new Item('  Mortgage Center', '#', '', 22, 0, 2);
menu[0][4] = new Item('  Rate Board', 'http://www.triarchy.com/rateboard/rates.asp', '', 22, 0, 0);
menu[0][5] = new Item('  Promotions', 'http://www.firstharrison.com/promotion.html', '', 22, 0, 0);
menu[0][6] = new Item('  Contacts', '#', '', 22, 0, 14);
menu[0][7] = new Item('  Payment Calculator', 'javascript:mobileCalculator();', '', 22, 0, 0);
menu[0][8] = new Item('  Financial Links', 'http://www.firstharrison.com/links.html', '', 22, 0, 0);
menu[0][9] = new Item('  Investments', 'http://www.firstharrison.com/invest.html', '', 22, 0, 0);
menu[0][10] = new Item('  Consumer Awareness / Financial Literacy', 'http://www.firstharrison.com/wca.html', '', 22, 0, 0);

// Branch Info
menu[1] = new Array();
menu[1][0] = new Menu(true, '', 116, 0, 98, defOver, defBack, 'itemBorder', 'itemText');
menu[1][1] = new Item('Corydon', 'http://www.firstharrison.com/corydon.html', '', defLength, 0, 0);
menu[1][2] = new Item('Edwardsville', 'http://www.firstharrison.com/edwardsv.html', '', defLength, 0, 0);
menu[1][3] = new Item('Floyds Knobs', 'http://www.firstharrison.com/floydsknobs.html', '', defLength, 0, 0);
menu[1][4] = new Item('Greenville', 'http://www.firstharrison.com/greenvil.html', '', defLength, 0, 0);
menu[1][5] = new Item('Hardinsburg', 'http://www.firstharrison.com/hardinsb.html', '', defLength, 0, 0);
menu[1][6] = new Item('Jay-C, Corydon', 'http://www.firstharrison.com/jayc.html', '', defLength, 0, 0);
menu[1][7] = new Item('Jeffersonville', 'http://www.firstharrison.com/jeffersonville.html', '', defLength, 0, 0);
menu[1][8] = new Item('Lanesville', 'http://www.firstharrison.com/lanesville.html', '', defLength, 0, 0);
menu[1][9] = new Item('New Albany', '#', '', 22, 0, 13);
menu[1][10] = new Item('New Salisbury', 'http://www.firstharrison.com/newsalisbury.html', '', defLength, 0, 0);
menu[1][11] = new Item('Palmyra', 'http://www.firstharrison.com/palmyra.html', '', defLength, 0, 0);
menu[1][12] = new Item('Salem', 'http://www.firstharrison.com/salem.html', '', defLength, 0, 0);


// Mortgage Loans
menu[2] = new Array();
menu[2][0] = new Menu(true, '', 116, 0, 98, defOver, defBack, 'itemBorder', 'itemText');
menu[2][1] = new Item('Apply Online', 'http://www.easybanking.instantlender.com/default.aspx', 'new', defLength, 0, 0);
menu[2][2] = new Item('Types', 'http://www.firstharrison.com/mortgage.html', '', defLength, 0, 0);
menu[2][3] = new Item('Questions', 'http://www.firstharrison.com/mort2.html', '', defLength, 0, 12);

// Service Brochure
menu[3] = new Array();
menu[3][0] = new Menu(true, '', 116, 0, 98, defOver, defBack, 'itemBorder', 'itemText');
menu[3][1] = new Item('Fee Schedule', 'http://www.firstharrison.com/fee.html', '', defLength, 0, 11);
menu[3][2] = new Item('Miscellaneous', 'http://www.firstharrison.com/misc.html', '', defLength, 0, 10);
menu[3][3] = new Item('Checking', 'http://www.firstharrison.com/checking.html', '', defLength, 0, 5);
menu[3][4] = new Item('Savings', 'http://www.firstharrison.com/savings.html', '', defLength, 0, 6);
menu[3][5] = new Item('CDs', 'http://www.firstharrison.com/cd.html', '', defLength, 0, 7);
menu[3][6] = new Item('I-Banking', 'http://www.firstharrison.com/ibank.html', '', defLength, 0, 8);
menu[3][7] = new Item('Loans', 'http://www.firstharrison.com/loans.html', '', defLength, 0, 9);

menu[4] = new Array();
menu[4][0] = new Menu(true, '', 99, 0, 235, defOver, defBack, 'itemBorder', 'itemText');
menu[4][1] = new Item('Fixed Rate Mortgage Loans', 'http://www.firstharrison.com/mortgage.html#fixed', '', defLength, 0, 0);
menu[4][2] = new Item('Mortgage Insurance Requirements', 'http://www.firstharrison.com/mortgage.html#mir', '', defLength, 0, 0);
menu[4][3] = new Item('Adjustable Rate Mortgage Loans', 'http://www.firstharrison.com/mortgage.html#adjust', '', defLength, 0, 0);
menu[4][4] = new Item('Construction Loans', 'http://www.firstharrison.com/mortgage.html#construct', '', defLength, 0, 0);
menu[4][5] = new Item('Home Equity Lines of Credit', 'http://www.firstharrison.com/mortgage.html#equity', '', defLength, 0, 0);

menu[5] = new Array();
menu[5][0] = new Menu(true, '', 99, 0, 235, defOver, defBack, 'itemBorder', 'itemText');
menu[5][1] = new Item('First Class Club', 'http://www.firstharrison.com/checking.html#firstclass', '', defLength, 0, 0);
menu[5][2] = new Item('First Class Bonus', 'http://www.firstharrison.com/checking.html#firstclassbonus', '', defLength, 0, 0);
menu[5][3] = new Item('First Class 50+', 'http://www.firstharrison.com/checking.html#firstclass50', '', defLength, 0, 0);
menu[5][4] = new Item('Classic Checking', 'http://www.firstharrison.com/checking.html#classic', '', defLength, 0, 0);
menu[5][5] = new Item('Scholar Checking', 'http://www.firstharrison.com/checking.html#scholar', '', defLength, 0, 0);
menu[5][6] = new Item('Care Free Checking', 'http://www.firstharrison.com/checking.html#carefree', '', defLength, 0, 0);
menu[5][7] = new Item('Cash Plus Money Market', 'http://www.firstharrison.com/checking.html#cashplus', '', defLength, 0, 0);
menu[5][8] = new Item('Enterprise Business Checking', 'http://www.firstharrison.com/checking.html#enterprise', '', defLength, 0, 0);
menu[5][9] = new Item('Excel Business Checking', 'http://www.firstharrison.com/checking.html#excel', '', defLength, 0, 0);

menu[6] = new Array();
menu[6][0] = new Menu(true, '', 99, 0, 235, defOver, defBack, 'itemBorder', 'itemText');
menu[6][1] = new Item('Classic Savings', 'http://www.firstharrison.com/savings.html#classic', '', defLength, 0, 0);
menu[6][2] = new Item('Christmas Club', 'http://www.firstharrison.com/savings.html#xmas', '', defLength, 0, 0);
menu[6][3] = new Item('Individual Retirement Accounts', 'http://www.firstharrison.com/savings.html#ira', '', defLength, 0, 0);
menu[6][4] = new Item('Health Savings Accounts', 'http://www.firstharrison.com/savings.html#health', '', defLength, 0, 0);

menu[7] = new Array();
menu[7][0] = new Menu(true, '', 99, 0, 235, defOver, defBack, 'itemBorder', 'itemText');
menu[7][1] = new Item('Certificates of Deposit', 'http://www.firstharrison.com/cd.html#cd', '', defLength, 0, 0);
menu[7][2] = new Item('Easy Access CD', 'http://www.firstharrison.com/cd.html#easy', '', defLength, 0, 0);

menu[8] = new Array();
menu[8][0] = new Menu(true, '', 99, 0, 235, defOver, defBack, 'itemBorder', 'itemText');
menu[8][1] = new Item('Internet Banking', 'http://www.firstharrison.com/ibank.html#ibank', '', defLength, 0, 0);
menu[8][2] = new Item('Web BillPay', 'http://www.firstharrison.com/ibank.html#billpay', '', defLength, 0, 0);

menu[9] = new Array();
menu[9][0] = new Menu(true, '', 99, 0, 235, defOver, defBack, 'itemBorder', 'itemText');
menu[9][1] = new Item('Mortgage Loan', 'http://www.firstharrison.com/loans.html#mort', '', defLength, 0, 0);
menu[9][2] = new Item('Automobile', 'http://www.firstharrison.com/loans.html#auto', '', defLength, 0, 0);
menu[9][3] = new Item('Home Equity Line of Credit', 'http://www.firstharrison.com/loans.html#homeq', '', defLength, 0, 0);
menu[9][4] = new Item('First-time Homeowners Program', 'http://www.firstharrison.com/loans.html#first', '', defLength, 0, 0);
menu[9][5] = new Item('Construction', 'http://www.firstharrison.com/loans.html#construct', '', defLength, 0, 0);
menu[9][6] = new Item('Consumer/Personal', 'http://www.firstharrison.com/loans.html#consumer', '', defLength, 0, 0);
menu[9][7] = new Item('Ready Line', 'http://www.firstharrison.com/loans.html#ready', '', defLength, 0, 0);
menu[9][8] = new Item('MasterCard/Visa', 'http://www.firstharrison.com/loans.html#mcvisa', '', defLength, 0, 0);
menu[9][9] = new Item('Student Loan', 'http://www.firstharrison.com/loans.html#student', '', defLength, 0, 0);
menu[9][10] = new Item('Small Business Loan', 'http://www.firstharrison.com/loans.html#small', '', defLength, 0, 0);

menu[10] = new Array();
menu[10][0] = new Menu(true, '', 99, 0, 235, defOver, defBack, 'itemBorder', 'itemText');
menu[10][1] = new Item('ATM Card', 'http://www.firstharrison.com/misc.html#atm', '', defLength, 0, 0);
menu[10][2] = new Item('Debit Card', 'http://www.firstharrison.com/misc.html#debit', '', defLength, 0, 0);
menu[10][3] = new Item('Direct Deposit', 'http://www.firstharrison.com/misc.html#direct', '', defLength, 0, 0);
menu[10][4] = new Item('Safe Deposit Box', 'http://www.firstharrison.com/misc.html#safe', '', defLength, 0, 0);
menu[10][5] = new Item('Wire Transfer', 'http://www.firstharrison.com/misc.html#wire', '', defLength, 0, 0);
menu[10][6] = new Item('Money Order', 'http://www.firstharrison.com/misc.html#money', '', defLength, 0, 0);
menu[10][7] = new Item('Travelers Checks', 'http://www.firstharrison.com/misc.html#trav', '', defLength, 0, 0);
menu[10][8] = new Item('Treasury Tax & Loan', 'http://www.firstharrison.com/misc.html#treas', '', defLength, 0, 0);
menu[10][9] = new Item('Credit Life, Accident & Health Insurance', 'http://www.firstharrison.com/misc.html#credit', '', defLength, 0, 0);
menu[10][10] = new Item('FDIC Insurance', 'http://www.firstharrison.com/misc.html#fdic', '', defLength, 0, 0);
menu[10][11] = new Item('MonyLine', 'http://www.firstharrison.com/misc.html#mony', '', defLength, 0, 0);

menu[11] = new Array();
menu[11][0] = new Menu(true, '', 99, 0, 235, defOver, defBack, 'itemBorder', 'itemText');
menu[11][1] = new Item('Scholar Checking', 'http://www.firstharrison.com/fee.html#scholar', '', defLength, 0, 0);
menu[11][2] = new Item('Classic Checking', 'http://www.firstharrison.com/fee.html#classic', '', defLength, 0, 0);
menu[11][3] = new Item('First Class Club', 'http://www.firstharrison.com/fee.html#club', '', defLength, 0, 0);
menu[11][4] = new Item('First Class Bonus', 'http://www.firstharrison.com/fee.html#bonus', '', defLength, 0, 0);
menu[11][5] = new Item('First Class 50+', 'http://www.firstharrison.com/fee.html#50', '', defLength, 0, 0);
menu[11][6] = new Item('Care Free Checking', 'http://www.firstharrison.com/fee.html#cfc', '', defLength, 0, 0);
menu[11][7] = new Item('Classic Savings', 'http://www.firstharrison.com/fee.html#clsa', '', defLength, 0, 0);
menu[11][8] = new Item('Cash Plus Money Market', 'http://www.firstharrison.com/fee.html#cash', '', defLength, 0, 0);
menu[11][9] = new Item('Enterprise Business Checking', 'http://www.firstharrison.com/fee.html#ebc', '', defLength, 0, 0);
menu[11][10] = new Item('I-Banking', 'http://www.firstharrison.com/fee.html#ibank', '', defLength, 0, 0);
menu[11][11] = new Item('Web BillPay', 'http://www.firstharrison.com/fee.html#wbp', '', defLength, 0, 0);
menu[11][12] = new Item('Excel Business Checking', 'http://www.firstharrison.com/fee.html#exbc', '', defLength, 0, 0);
menu[11][13] = new Item('ATM and STAR Transactions', 'http://www.firstharrison.com/fee.html#atm', '', defLength, 0, 0);
menu[11][14] = new Item('Other Fees', 'http://www.firstharrison.com/fee.html#other', '', defLength, 0, 0);

menu[12] = new Array();
menu[12][0] = new Menu(true, '', 99, 0, 235, defOver, defBack, 'itemBorder', 'itemText');
menu[12][1] = new Item('Can you explain closing costs?', 'http://www.firstharrison.com/closing.html', '', defLength, 0, 0);
menu[12][2] = new Item('Which mortgage is right for me?', 'http://www.firstharrison.com/choosing.html', '', defLength, 0, 0);
menu[12][3] = new Item('What will the bank need from me?', 'http://www.firstharrison.com/checklist.html', '', defLength, 0, 0);
menu[12][4] = new Item('What does that term mean?', 'http://www.firstharrison.com/terms.html', '', defLength, 0, 0);
menu[12][5] = new Item('What is the process?', 'http://www.firstharrison.com/financing.html', '', defLength, 0, 0);
menu[12][6] = new Item('How much can I afford?', 'http://www.firstharrison.com/loanform.html', '', defLength, 0, 0);

// New Albany Branches
menu[13] = new Array();
menu[13][0] = new Menu(true, '', 99, 0, 235, defOver, defBack, 'itemBorder', 'itemText');
menu[13][1] = new Item('Charlestown Crossing', 'http://www.firstharrison.com/chtown.html', '', defLength, 0, 0);
menu[13][2] = new Item('Grant Line Road', 'http://www.firstharrison.com/grantline.html', '', defLength, 0, 0);

// Contacts Tree
menu[14] = new Array();
menu[14][0] = new Menu(true, '', 99, 0, 175, defOver, defBack, 'itemBorder', 'itemText');
menu[14][1] = new Item('Officers', '#', '', defLength, 0, 15);
menu[14][2] = new Item('Branch Managers', '#', '', defLength, 0, 16);
menu[14][3] = new Item('Loan Officers', '#', '', defLength, 0, 17);
menu[14][4] = new Item('Loan Processing', '#', '', defLength, 0, 18);
menu[14][5] = new Item('Mortgage Loan Department', '#', '', defLength, 0, 25);
menu[14][6] = new Item('Business Development', '#', '', defLength, 0, 26);
menu[14][7] = new Item('Compliance', '#', '', defLength, 0, 20);
menu[14][8] = new Item('Information Technology', '#', '', defLength, 0, 21);
menu[14][9] = new Item('Data Processing', '#', '', defLength, 0, 22);
menu[14][10] = new Item('HR/Accounting', '#', '', defLength, 0, 23);
menu[14][11] = new Item('Financial Services', '#', '', defLength, 0, 24);
menu[14][12] = new Item('Phone Numbers', 'http://www.firstharrison.com/branchphone.html', '', defLength, 0, 0);

// Officers Contacts
menu[15] = new Array();
menu[15][0] = new Menu(true, '', 145, 0, 295, defOver, defBack, 'itemBorder', 'itemText');
menu[15][1] = new Item('Samuel E. Uhl, President & CEO', 'mailto:suhl@firstharrison.com', '', defLength, 0, 0);
menu[15][2] = new Item('Joel Voyles, Retail Banking', 'mailto:jvoyles@firstharrison.com', '', defLength, 0, 0);
menu[15][3] = new Item('Dennis Thomas, Senior Vice President', 'mailto:dthomas@firstharrison.com', '', defLength, 0, 0);


// Branch Managers Contacts
menu[16] = new Array();
menu[16][0] = new Menu(true, '', 145, 0, 295, defOver, defBack, 'itemBorder', 'itemText');
menu[16][1] = new Item('Darrell NesSmith, Main Office', 'mailto:dnessmith@firstharrison.com', '', defLength, 0, 0);
menu[16][2] = new Item('Lisa Matchuny, Greenville', 'mailto:lmatchuny@firstharrison.com', '', defLength, 0, 0);
menu[16][3] = new Item('Claire Hirt, Edwardsville', 'mailto:chirt@firstharrison.com', '', defLength, 0, 0);
menu[16][4] = new Item('Amy Birkla, Hardinsburg', 'mailto:abirkla@firstharrison.com', '', defLength, 0, 0);
menu[16][5] = new Item('Rick Newlin, Charlestown Crossing', 'mailto:rnewlin@firstharrison.com', '', defLength, 0, 0);
menu[16][6] = new Item('Lori Kiesler, Palmyra', 'mailto:lkiesler@firstharrison.com', '', defLength, 0, 0);
menu[16][7] = new Item('Ronda Bailey, Jay C', 'mailto:rbailey@firstharrison.com', '', defLength, 0, 0);
menu[16][8] = new Item('Jeremy Utz, New Salisbury', 'mailto:jutz@firstharrison.com', '', defLength, 0, 0);
menu[16][9] = new Item('Angela Kitchel, Grant Line Road', 'mailto:akitchel@firstharrison.com', '', defLength, 0, 0);
menu[16][10] = new Item('Doris Parsons, Floyds Knobs', 'mailto:dparsons@firstharrison.com', '', defLength, 0, 0);
menu[16][11] = new Item('Kevin Burke, Jeffersonville', 'mailto:kburke@firstharrison.com', '', defLength, 0, 0);
menu[16][12] = new Item('Gerilee Hunt, Salem', 'mailto:ghunt@firstharrison.com', '', defLength, 0, 0);
menu[16][13] = new Item('Craig Engleman, Lanesville', 'mailto:cengleman@firstharrison.com', '', defLength, 0, 0);

// Loan Officers Contacts
menu[17] = new Array();
menu[17][0] = new Menu(true, '', 145, 0, 295, defOver, defBack, 'itemBorder', 'itemText');
menu[17][1] = new Item('Roger Alexander, Main Office', 'mailto:ralexander@firstharrison.com', '', defLength, 0, 0);
menu[17][2] = new Item('Sherri Huls, Main Office', 'mailto:shuls@firstharrison.com', '', defLength, 0, 0);
menu[17][3] = new Item('Donnie Hussung, Main Office', 'mailto:dhussung@firstharrison.com', '', defLength, 0, 0);
menu[17][4] = new Item('Matt Schneider, Main Office', 'mailto:mschneider@firstharrison.com', '', defLength, 0, 0);
menu[17][5] = new Item('Doug Rothrock, Palmyra', 'mailto:drothrock@firstharrison.com', '', defLength, 0, 0);
menu[17][6] = new Item('Joel Culbertson, Palmyra', 'mailto:jculbertson@firstharrison.com', '', defLength, 0, 0);
menu[17][7] = new Item('Joe Mahuron, Grant Line Road', 'mailto:jmahuron@firstharrison.com', '', defLength, 0, 0);
menu[17][8] = new Item('Greg Geswein, Edwardsville', 'mailto:ggeswein@firstharrison.com', '', defLength, 0, 0);
menu[17][9] = new Item('Steve Timberlake, Grant Line Road', 'mailto:stimberlake@firstharrison.com', '', defLength, 0, 0);
menu[17][10] = new Item('Kevin Burke, Jeffersonville', 'mailto:kburke@firstharrison.com', '', defLength, 0, 0);


// Loan Processing Contacts
menu[18] = new Array();
menu[18][0] = new Menu(true, '', 145, 0, 295, defOver, defBack, 'itemBorder', 'itemText');
menu[18][1] = new Item('Carolyn Kovachik, Loan Processing Manager', 'mailto:ckovachik@firstharrison.com', '', defLength, 0, 0);

// Marketing Contacts
menu[19] = new Array();
menu[19][0] = new Menu(true, '', 145, 0, 295, defOver, defBack, 'itemBorder', 'itemText');
menu[19][1] = new Item('Aaron Smith, Marketing Manager', 'mailto:asmith@firstharrison.com', '', defLength, 0, 0);

// Compliance Contacts
menu[20] = new Array();
menu[20][0] = new Menu(true, '', 145, 0, 295, defOver, defBack, 'itemBorder', 'itemText');
menu[20][1] = new Item('Jason Pendleton, Compliance Officer', 'mailto:jpendleton@firstharrison.com', '', defLength, 0, 0);

// Information Technology Contacts
menu[21] = new Array();
menu[21][0] = new Menu(true, '', 145, 0, 295, defOver, defBack, 'itemBorder', 'itemText');
menu[21][1] = new Item('Brad Backherms, Information Technology Manager', 'mailto:bbackherms@firstharrison.com', '', defLength, 0, 0);
menu[21][2] = new Item('Travis Byrne, Information Technology', 'mailto:tbyrne@firstharrison.com', '', defLength, 0, 0);

// Data Processing Contacts
menu[22] = new Array();
menu[22][0] = new Menu(true, '', 145, 0, 295, defOver, defBack, 'itemBorder', 'itemText');
menu[22][1] = new Item('Juanita Engleman, Credit/Debit Card Processing', 'mailto:jengleman@firstharrison.com', '', defLength, 0, 0);
menu[22][2] = new Item('Jennifer Daniels-Grigsby, Data Operations Manager', 'mailto:jgrigsby@firstharrison.com', '', defLength, 0, 0);
menu[22][3] = new Item('Marcia Ruoff, Proof Operations Manager', 'mailto:mruoff@firstharrison.com', '', defLength, 0, 0);
menu[22][4] = new Item('Robin Yocum, Systems Support Manager', 'mailto:ryocum@firstharrison.com', '', defLength, 0, 0);

// HR/Accounting Contacts
menu[23] = new Array();
menu[23][0] = new Menu(true, '', 145, 0, 295, defOver, defBack, 'itemBorder', 'itemText');
menu[23][1] = new Item('Jill Keinsley, Director of Human Resources', 'mailto:jkeinsley@firstharrison.com', '', defLength, 0, 0);
menu[23][2] = new Item('Kim Banet, HR Generalist', 'mailto:kbanet@firstharrison.com', '', defLength, 0, 0);
menu[23][3] = new Item('Angela Hypes, Controller', 'mailto:ahypes@firstharrison.com', '', defLength, 0, 0);

// Financial Services Contacts
menu[24] = new Array();
menu[24][0] = new Menu(true, '', 145, 0, 295, defOver, defBack, 'itemBorder', 'itemText');
menu[24][1] = new Item('Helen Strong, Investment Officer ', 'mailto:hstrong@firstharrison.com', '', defLength, 0, 0);
menu[24][2] = new Item('Mickie Vallandingham, Investment Officer', 'mailto:mvallandingham@firstharrison.com', '', defLength, 0, 0);

// Mortgage Loan Department Contacts
menu[25] = new Array();
menu[25][0] = new Menu(true, '', 145, 0, 295, defOver, defBack, 'itemBorder', 'itemText');
menu[25][1] = new Item('Mary Renn, Residential Loan Manager', 'mailto:mrenn@firstharrison.com', '', defLength, 0, 0);
menu[25][2] = new Item('Rob Marlin, Mortgage Loan Originator', 'mailto:rmarlin@firstharrison.com', '', defLength, 0, 0);
menu[25][3] = new Item('Stephanie Smythe, Mortgage Loan Originator', 'mailto:ssmythe@firstharrison.com', '', defLength, 0, 0);

// Business Development Contacts
menu[26] = new Array();
menu[26][0] = new Menu(true, '', 145, 0, 295, defOver, defBack, 'itemBorder', 'itemText');
menu[26][1] = new Item('Adrian Brown, Director Of Business Development', 'mailto:abrown@firstharrison.com', '', defLength, 0, 0);


var popOldWidth = window.innerWidth;
nsResizeHandler = new Function('if (popOldWidth != window.innerWidth) location.reload()');
if (isNS4) document.captureEvents(Event.CLICK);
document.onclick = clickHandle;

function clickHandle(evt)
{
 if (isNS4) document.routeEvent(evt);
 hideAllBut(0);
}

function moveRoot()
{
 with(menu[0][0].ref) left = ((parseInt(left) < 100) ? 100 : 5);
}
//  End -->



<!--
// Preloads changing menu images.
function preLoad() {
	if (document.images) {
		home6_mission = new Image();
		home6_mission.src = "images/mission6.gif";

		home6_branch = new Image();
		home6_branch.src = "images/branch6.gif";

		home6_mortgage = new Image();
		home6_mortgage.src = "images/mortgage6.gif";

		home6_service = new Image();
		home6_service.src = "images/service6.gif";

		home6_quest = new Image();
		home6_quest.src = "images/quest6.gif";

		home6_rate = new Image();
		home6_rate.src = "images/rate6.gif";

		home6_prom = new Image();
		home6_prom.src = "images/prom6.gif";

		home6_contact = new Image();
		home6_contact.src = "images/contact6.gif";

		home6_calc = new Image();
		home6_calc.src = "images/calc6.gif";

		home6_link = new Image();
		home6_link.src = "images/link6.gif";

		home6_invest = new Image();
		home6_invest.src = "images/invest6.gif";

		home6_ibank = new Image();
		home6_ibank.src = "images/ibank6.gif";

		home6_billpay = new Image();
		home6_billpay.src = "images/billpay6.gif";

	}
}

        function mission(image){
                if (document.images) {
                        imgOn = eval(image + "_mission.src");
                        document [image].src = imgOn;
                }
        }

        function branch(image){
                if (document.images) {
                        imgOff = eval(image + "_branch.src");
                        document [image].src = imgOff;
                 }
         }

		function mortgage(image){
                if (document.images) {
                        imgOn = eval(image + "_mortgage.src");
                        document [image].src = imgOn;
                }
        }

		function service(image){
                if (document.images) {
                        imgOn = eval(image + "_service.src");
                        document [image].src = imgOn;
                }
        }

		function quest(image){
                if (document.images) {
                        imgOn = eval(image + "_quest.src");
                        document [image].src = imgOn;
                }
        }

		function rate(image){
                if (document.images) {
                        imgOn = eval(image + "_rate.src");
                        document [image].src = imgOn;
                }
        }

		function prom(image){
                if (document.images) {
                        imgOn = eval(image + "_prom.src");
                        document [image].src = imgOn;
                }
        }

		function contact(image){
                if (document.images) {
                        imgOn = eval(image + "_contact.src");
                        document [image].src = imgOn;
                }
        }


		function calc(image){
                if (document.images) {
                        imgOn = eval(image + "_calc.src");
                        document [image].src = imgOn;
                }
        }

		function link(image){
                if (document.images) {
                        imgOn = eval(image + "_link.src");
                        document [image].src = imgOn;
                }
        }

		function invest(image){
                if (document.images) {
                        imgOn = eval(image + "_invest.src");
                        document [image].src = imgOn;
                }
        }

		function ibank(image){
                if (document.images) {
                        imgOn = eval(image + "_ibank.src");
                        document [image].src = imgOn;
                }
        }
		
		function billpay(image){
                if (document.images) {
                        imgOn = eval(image + "_billpay.src");
                        document [image].src = imgOn;
                }
        }

// Floating calculator
function mobileCalculator() {
	var calculator;
	if (!calculator || calculator.closed) {
		calculator = window.open("calculator.html","calculator","HEIGHT=300,WIDTH=500");
	} else {
		calculator.focus();
	}
}

// Coupon Display
function couponDisplay(type) {
	var coupon;
	var couponType = type;
	coupon = window.open(couponType + "_coupon.html","coupon","toolbar=1,left=50,top=50,height=200,width=700");
}
//-->
