if(document.layers){
	document.write('<style>.clS,.clSover,.clB{border: 0px;}</style>');
}
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=40; 
oM.barX=0;
oM.barY="menu"; 
oM.barClass="ebar";
oM.barBorderX=0; 
oM.barBorderY=0;
db='<span class="bullet">&raquo;</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,"clS","clSover",0,0,"clB",0,"",0,0,0,0,0);
oM.level[0].roundBorder=1;
oM.level[0].filter="progid:DXImageTransform.Microsoft.gradientWipe(duration=1, gradientsize=0.5)"; 
oM.level[1]=new cm_makeLevel(185,25,"clS","clSover",1,1,"clB",0,"right",0,0,imgdir+"menu_arrow.gif",8,9);


/******************************************
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+'Personal Checking Accounts',sitedir+'deposit_personal_checking.html');
		oM.makeMenu('menu1_1_1','menu1_1',db+'Free Checking',sitedir+'deposit_personal_checking.html#free');
		oM.makeMenu('menu1_1_2','menu1_1',db+'Regular Checking',sitedir+'deposit_personal_checking.html#regular');
		oM.makeMenu('menu1_1_4','menu1_1',db+'Senior Checking',sitedir+'deposit_personal_checking.html#now');
		oM.makeMenu('menu1_1_5','menu1_1',db+'Now Account',sitedir+'deposit_personal_checking.html');
		oM.makeMenu('menu1_1_6','menu1_1',db+'Super Now Account',sitedir+'deposit_personal_checking.html#super');
		oM.makeMenu('menu1_1_7','menu1_1',db+'Money Market Plus',sitedir+'deposit_personal_checking.html#money');
	oM.makeMenu('menu1_2','menu1',db+'Commercial Products',sitedir+'deposit_commerical.html');
	oM.makeMenu('menu1_3','menu1',db+'Savings Accounts',sitedir+'deposit_personal_savings.html');
		oM.makeMenu('menu1_3_1','menu1_3',db+'Regular Savings',sitedir+'deposit_personal_savings.html#regular');
		oM.makeMenu('menu1_3_2','menu1_3',db+'Youth Savings',sitedir+'deposit_personal_savings.html#youth');
	oM.makeMenu('menu1_4','menu1',db+'Certificates of Deposit',sitedir+'deposit_personal_cd.html');
	oM.makeMenu('menu1_5','menu1',db+'Retirement Accounts',sitedir+'deposit_personal_retire.html');
	
oM.makeMenu('menu2');
		oM.makeMenu('menu2_1','menu2',db+'Personal Loans',sitedir+'loan_products.html#personal');
		oM.makeMenu('menu2_2','menu2',db+'Farm Loans',sitedir+'loan_products.html#farm');
		oM.makeMenu('menu2_3','menu2',db+'Commercial Loans',sitedir+'loan_products.html#commercial');
		
oM.makeMenu('menu3');
	oM.makeMenu('menu3_1','menu3',db+'ATM - Debit Card',sitedir+'services.html#atm');
	oM.makeMenu('menu3_2','menu3',db+'VISA - Check Card',sitedir+'services.html#visa');
    oM.makeMenu('menu3_3','menu3',db+'Safe Deposit Boxes',sitedir+'services.html#safe');
	oM.makeMenu('menu3_4','menu3',db+'Notary Public',sitedir+'services.html#notary');
	
	
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("depositproducts");
var dropmenu2 = new  FindPosition("loanproducts");
var dropmenu3 = new  FindPosition("services");


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



