var newH = 38;
if(document.layers){
	document.write('<style>.clS,.clSover{border: 0px;}</style>');
	newH += 1;
}

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="<img src='"+imgdir+"clearpix.gif' width='3' height='1' border='0' alt='' />";

//oM.level[0]=new cm_makeLevel(width,height,regClass,overClass,borderX,borderY,borderClass,rows,align,offsetX,offsetY,arrow,arrowWidth,arrowHeight)<img src="../images/menu_arrow.gif" width="14" height="10" alt="" border="0">
oM.level[0]=new cm_makeLevel(0,0,"clS","clS",0,0,"clB",0,"bottom",0,0,0,0,0);
oM.level[0].filter="PROGID:DXImageTransform.Microsoft.Alpha(opacity=95, finishopacity=100, style=1)"; 
oM.level[0].roundBorder=1;
oM.level[1]=new cm_makeLevel(175,22,"clS","clSover",0,0,"clB",0,"right",0,0,imgdir+"tri.gif",5,10);

/******************************************
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','Login to BelleBank','https://www.bellebank.com/onlineserv/HB/','_blank');
	oM.makeMenu('menu1_2','menu1','Login to Business BelleBank','https://www.bellebank.com/onlineserv/CM/');
/*	oM.makeMenu('menu1_1','menu1',db+'Login to Online Banking','https://www.bellebank.com/onlineserv/HB/','_blank');
	oM.makeMenu('menu1_2','menu1',db+'Login to Business Banking','https://www.bellebank.com/onlineserv/CM/','_blank');*/

/*
<a href="javascript:void(0);" onmouseover="" onmouseout="img_inact('onlinebanking'); oM.mout();">
<img src="images/nav-onlinebanking-off.gif" width="150" height="21" alt="Online Banking" name="onlinebanking" border="0" />
</a>
name,parent,txt,lnk,targ,w,h,img1,img2,cl,cl2,align,rows,nolink,onclick,onmouseover,onmouseout
*/

oM.makeMenu('menu2');
	oM.makeMenu('menu2_1','menu2','Deposit Services',sitedir+'prodserv_deposit.html');
		oM.makeMenu('menu2_1_1','menu2_1','Checking Accounts',sitedir+'prodserv_deposit_checking.html');
		oM.makeMenu('menu2_1_2','menu2_1','Savings Accounts',sitedir+'prodserv_deposit_savings.html');
		oM.makeMenu('menu2_1_3','menu2_1','Certificates of Deposit',sitedir+'certificates.html');
	oM.makeMenu('menu2_2','menu2','Bank Cards',sitedir+'bank_cards.html');
	oM.makeMenu('menu2_3','menu2','Loans',sitedir+'prodserv_loans.html');
	oM.makeMenu('menu2_4','menu2','Trust &amp; Investment Services',sitedir+'prodserv_trust.html');
	oM.makeMenu('menu2_5','menu2','Other Services',sitedir+'prodserv_other_descriptions.html');		
		
oM.makeMenu('menu3');
	oM.makeMenu('menu3_1','menu3','Contact Information',sitedir+'contact_info.html');
	oM.makeMenu('menu3_2','menu3','Privacy Statement',sitedir+'privacy.html');	



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("onlinebanking");
var dropmenu2 = new  FindPosition("products");
var dropmenu3 = new  FindPosition("contact");
var dropmenu4 = new  FindPosition("depositservices");

function showMenu(menu){
	switch(menu){
		case "menu1":
		oM.m["menu1"].b.moveIt(dropmenu1.xPos+150,dropmenu1.yPos);
		break;
		case "menu2":
		oM.m["menu2"].b.moveIt(dropmenu2.xPos+150,dropmenu2.yPos);
		break;		
		case "menu3":
		oM.m["menu3"].b.moveIt(dropmenu3.xPos+150,dropmenu3.yPos);
		break;		
		case "menu4":
		oM.m["menu4"].b.moveIt(dropmenu4.xPos+300,dropmenu4.yPos);
		break;		
			
	}
	oM.showsub(menu);
}
//end of file