var url = self.location.href;
if (url.indexOf("#")!=-1)
	self.location.href=url.substring(url.indexOf('#'),url.length);


var newH = 36;
if(document.layers){
	document.write('<style type="text/css">.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)
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=100, finishopacity=100, style=3)";
oM.level[1]=new cm_makeLevel(175,25,"item_off","item_on",0,0,"bordercolor",0,"right",0,0,imgdir+"promo_li.gif",6,7);
oM.level[1].roundBorder=1;
/******************************************
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',db+'Login','https://www.wbbankonline.com/onlineserv/HB/');
	oM.makeMenu('menu1_2','menu1',db+'Demo','https://www.wbbankonline.com/onlineserv/HB/demo.html');
	oM.makeMenu('menu1_3','menu1',db+'More Info',sitedir+'help_internet.html');	

oM.makeMenu('menu2');
	oM.makeMenu('menu2_1','menu2',db+'Checking Accounts',sitedir+'personal_checking.html');
		oM.makeMenu('menu2_1_1','menu2_1',db+'Regular Checking',sitedir+'personal_checking.html#regular');	
		oM.makeMenu('menu2_1_2','menu2_1',db+'NOW Checking',sitedir+'personal_checking.html#now');
		oM.makeMenu('menu2_1_3','menu2_1',db+'Super NOW Checking',sitedir+'personal_checking.html#super');
		oM.makeMenu('menu2_1_4','menu2_1',db+'Student Checking',sitedir+'personal_checking.html#regular');
		oM.makeMenu('menu2_1_5','menu2_1',db+'Senior Checking',sitedir+'personal_checking.html#regular');
		oM.makeMenu('menu2_1_6','menu2_1',db+'Check Reorder',sitedir+'personal_checking.html#check');									
	oM.makeMenu('menu2_2','menu2',db+'Savings &amp; IRAs',sitedir+'personal_cds.html#savings');
		oM.makeMenu('menu2_2_1','menu2_2',db+'Regular Savings',sitedir+'personal_cds.html#savings');	
		oM.makeMenu('menu2_2_2','menu2_2',db+'IRA',sitedir+'personal_cds.html#ira');	
	oM.makeMenu('menu2_3','menu2',db+'CDs',sitedir+'personal_cds.html');
	oM.makeMenu('menu2_4','menu2',db+'Loans',sitedir+'personal_loans.html');
	oM.makeMenu('menu2_5','menu2',db+'Other Services',sitedir+'personal_services.html');


		
oM.makeMenu('menu3');
	oM.makeMenu('menu3_1','menu3',db+'Checking Accounts',sitedir+'business_checking.html');	
		oM.makeMenu('menu3_1_1','menu3_1',db+'Business Checking',sitedir+'business_checking.html#regular');	
		oM.makeMenu('menu3_1_2','menu3_1',db+'NOW Checking',sitedir+'business_checking.html#now');
		oM.makeMenu('menu3_1_3','menu3_1',db+'Super NOW Checking',sitedir+'business_checking.html#super');		
	oM.makeMenu('menu3_2','menu3',db+'Savings',sitedir+'business_savings.html#savings');
	oM.makeMenu('menu3_3','menu3',db+'CDs',sitedir+'business_savings.html#cds');
	oM.makeMenu('menu3_4','menu3',db+'Loans',sitedir+'business_loans.html');


oM.makeMenu('menu4');
	oM.makeMenu('menu4_1','menu4',db+'Scheduled Fees',sitedir+'feesrates_fees.html');
	oM.makeMenu('menu4_2','menu4',db+'Current Rates',sitedir+'feesrates_rates.html');

									
oM.makeMenu('menu5');
	oM.makeMenu('menu5_1','menu5',db+'Loan Calculator',sitedir+'calculators_loan.html');
	oM.makeMenu('menu5_2','menu5',db+'Savings Calculator',sitedir+'calculators_savings.html');
	oM.makeMenu('menu5_3','menu5',db+'Retirement Calculator',sitedir+'calculators_retirement.html');
	oM.makeMenu('menu5_4','menu5',db+'Mortgage Calculator',sitedir+'calculators_mortgage.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("personalbanking");
var dropmenu3 = new  FindPosition("businessbanking");
var dropmenu4 = new  FindPosition("feesrates");
var dropmenu5 = new  FindPosition("calculators");



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