oM=new makeCM("oM"); 
oM.resizeCheck=0; 
oM.rows=1;  
oM.onlineRoot=""
oM.offlineRoot=""
oM.pxBetween=0; 
oM.fillImg=imgdir+"clearpix.gif"; 
oM.fromTop=0; 
oM.fromLeft=0; 
oM.wait=300; 
oM.zIndex=400;
oM.useBar=0; 
oM.barWidth="0"; 
oM.barHeight="menu"; 
oM.barX=0;
oM.barY="menu"; 
oM.barClass="clB";
oM.barBorderX=0; 
oM.barBorderY=0;
db='<span class="bullet">&#149; </span>';

//oM.level[0]=new cm_makeLevel(width,height,regClass,overClass,borderX,borderY,borderClass,rows,align,offsetX,offsetY,arrow,arrowWidth,arrowHeight)
oM.level[0]=new cm_makeLevel(0,0,"bordercolor","bordercolor",0,0,"clB",0,"bottom",0,0,0,0,0);
oM.level[0].filter="progid:DXImageTransform.Microsoft.Alpha(opacity=96, finishopacity=96, style=3)";
oM.level[1]=new cm_makeLevel(170,25,"item_off","item_on",1,1,"clB",0,"right",1,1,imgdir+"tri.gif",5,10);
oM.level[1].roundBorder=0;
/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/




oM.makeMenu('menu1');
oM.makeMenu('menu1_1','menu1','Online Banking',sitedir+'personal_online.html');
oM.makeMenu('menu1_2','menu1','Checking',sitedir+'personal_checking.html');
oM.makeMenu('menu1_3','menu1','Savings',sitedir+'personal_checking.html#savings');
oM.makeMenu('menu1_4','menu1','Money Market',sitedir+'personal_checking.html#money');
oM.makeMenu('menu1_5','menu1','Certificates of Deposit',sitedir+'personal_checking.html#cd');
oM.makeMenu('menu1_6','menu1','IRA',sitedir+'personal_checking.html#ira');
oM.makeMenu('menu1_7','menu1','Safe Deposit Box',sitedir+'personal_safe.html');
oM.makeMenu('menu1_8','menu1','Investments',sitedir+'personal_safe.html#investment');
oM.makeMenu('menu1_9','menu1','Combined Statements',sitedir+'personal_safe.html#combined');
oM.makeMenu('menu1_10','menu1','Foreign Exchange',sitedir+'personal_safe.html#foreign');
oM.makeMenu('menu1_11','menu1','Wire Transfer',sitedir+'personal_safe.html#wire');


oM.makeMenu('menu2');
oM.makeMenu('menu2_1','menu2','Online Banking',sitedir+'business_online.html'); 
oM.makeMenu('menu2_2','menu2','Checking',sitedir+'business_checking.html#checking'); 
oM.makeMenu('menu2_3','menu2','IOLTA',sitedir+'business_checking.html#iolta'); 
oM.makeMenu('menu2_4','menu2','Money Market',sitedir+'business_checking.html#money'); 
oM.makeMenu('menu2_5','menu2','Certificates of Deposit',sitedir+'business_checking.html#cd'); 
oM.makeMenu('menu2_6','menu2','Investments',sitedir+'business_investments.html'); 
oM.makeMenu('menu2_7','menu2','Foreign Exchange',sitedir+'business_investments.html#foreign'); 
oM.makeMenu('menu2_8','menu2','Combined Statements',sitedir+'business_investments.html#combined'); 
oM.makeMenu('menu2_9','menu2','Wire Transfer',sitedir+'business_investments.html#wire'); 

oM.makeMenu('menu3');
oM.makeMenu('menu3_1','menu3','ACH Origination',sitedir+'treasury_mgmnt.html'); 
oM.makeMenu('menu3_2','menu3','Account Reconciliation',sitedir+'treasury_mgmnt.html#reconciliation'); 
oM.makeMenu('menu3_3','menu3','Lockbox',sitedir+'treasury_mgmnt.html#lockbox'); 
oM.makeMenu('menu3_4','menu3','Merchant Services',sitedir+'treasury_mgmnt.html#merchant'); 
oM.makeMenu('menu3_5','menu3','Positive Pay',sitedir+'treasury_mgmnt.html#positive'); 
oM.makeMenu('menu3_6','menu3','Remote Deposit Capture',sitedir+'treasury_mgmnt.html#remote'); 
oM.makeMenu('menu3_7','menu3','Investment Sweep Accounts',sitedir+'treasury_mgmnt.html#sweep'); 
oM.makeMenu('menu3_8','menu3','Zero Balance Account',sitedir+'treasury_mgmnt.html#zero'); 


oM.makeMenu('menu4');



oM.makeMenu('menu5');




oM.menuPlacement=new Array(0);
oM.construct();

function FindPosition(image_name){
    if(!document.images[image_name]){
        return null;
    }
    this.image_name = image_name;
    this.xPos = 500;
    this.yPos = 500;
    this.ref_image = document.images[image_name];
    this.getRealLeft = getRealLeft;
    this.getRealTop = getRealTop;
    this.getRealLeft();
    this.getRealTop();
}

function getRealLeft(move) {
   if(!move){
        move = 0;
    }
   if(document.layers){
     this.xPos = this.ref_image.x + move;    
     return this.xPos;
   }
	this.xPos = this.ref_image.offsetLeft;
	tempEl = this.ref_image.offsetParent;
  	while (tempEl != null) {
  		this.xPos += tempEl.offsetLeft;
  		tempEl = tempEl.offsetParent;
  	}
    this.xPos = this.xPos + move;
	return this.xPos;
}

function getRealTop(move) {
    if(!move){
        move = 0;
    }
    if(document.layers){
     this.yPos = this.ref_image.y + move; 
     return this.yPos
   }
	this.yPos = this.ref_image.offsetTop;
	tempEl = this.ref_image.offsetParent;
	while (tempEl != null) {
  		this.yPos += tempEl.offsetTop;
  		tempEl = tempEl.offsetParent;
  	}
    this.yPos = this.yPos + move;
	return this.yPos;
}

var dropmenu1 = new  FindPosition("pers");
var dropmenu2 = new  FindPosition("bus");
var dropmenu3 = new  FindPosition("treas");
var dropmenu4 = new  FindPosition("calcs");
var dropmenu5 = new  FindPosition("art");


function showMenu(menu){
	switch(menu){
		case "menu1":
		oM.m["menu1"].b.moveIt(dropmenu1.xPos+0,dropmenu1.yPos+29);
		break;
		case "menu2":
        oM.m["menu2"].b.moveIt(dropmenu2.xPos+0,dropmenu2.yPos+29);
		break;
		case "menu3":
		oM.m["menu3"].b.moveIt(dropmenu3.xPos+0,dropmenu3.yPos+29);
		break;
		case "menu4":
		oM.m["menu4"].b.moveIt(dropmenu4.xPos+0,dropmenu4.yPos+29);
		break;   
		case "menu5":
		oM.m["menu5"].b.moveIt(dropmenu5.xPos+0,dropmenu5.yPos+29);
		break;   
 
	} 
	oM.showsub(menu);
	
}





