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",1,1,"clB",0,"bottom",0,0,0,0,0);
//oM.level[0].filter="PROGID:DXImageTransform.Microsoft.Alpha(opacity=97, finishopacity=87, style=1)";
oM.level[1]=new cm_makeLevel(175,20,"item_off","item_on",1,1,"bordercolor",0,"right",0,0,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) 
*************************************/

//Solutions
oM.makeMenu('menu1');
	oM.makeMenu('menu1_1','menu1',"About CUcorp", "/About_CUcorp_207.htm");
	oM.makeMenu('menu1_2','menu1',"About CU Lending Solutions", "/About_CUlending_Solutions_222.htm");
	oM.makeMenu('menu1_3','menu1',"About CU Growth Solutions", "/About_CUgrowth_Solutions_445.htm");
	oM.makeMenu('menu1_4','menu1',"About Strategic Solutions", "/About_Strategic_Solutions_470.htm");
	//oM.makeMenu('menu1_5','menu1',"Marketing", "/solutions/marketing.php");
	//oM.makeMenu('menu1_6','menu1',"Operations", "/solutions/operations/");
		//oM.makeMenu('menu1_5_1','menu1_7',"Membership Application", "javascript:open_apps('membership_app');");
		//oM.makeMenu('menu1_5_2','menu1_7',"Loan Application", "javascript:expressLender();");

//Products
oM.makeMenu('menu2');
	oM.makeMenu('menu2_1','menu2',"Consulting & Development", "/products/consulting_development/");
	oM.makeMenu('menu2_2','menu2',"E-Business Tools", "/products/ebusiness_tools/");
	oM.makeMenu('menu2_3','menu2',"Education", "/products/education/");
	oM.makeMenu('menu2_4','menu2',"Lending & Payments", "/products/lending_payments/");
	oM.makeMenu('menu2_5','menu2',"Multimedia & Design", "/products/multimedia_design/");
	oM.makeMenu('menu2_6','menu2',"Partners", "/products/partners/");
	oM.makeMenu('menu2_7','menu2',"Security & Compliance", "/products/security_compliance/");
	oM.makeMenu('menu2_8','menu2',"Web Site Content", "/products/content/");
	oM.makeMenu('menu2_9','menu2',"Web Site Development", "/products/development/");
	oM.makeMenu('menu2_10','menu2',"Web Site Enhancements", "/products/enhancements/");


//Resources
oM.makeMenu('menu3');
	oM.makeMenu('menu3_1','menu3',"Downloads", "/resources/downloads.php");
	oM.makeMenu('menu3_2','menu3',"FAQs", "/resources/faq.php");
	oM.makeMenu('menu3_3','menu3',"Marketing", "/resources/marketing.php");
	oM.makeMenu('menu3_4','menu3',"Reference Articles", "/resources/newsletter.php");

//Support
oM.makeMenu('menu4');
	oM.makeMenu('menu4_1','menu4',"FAQs", "/support/");
	oM.makeMenu('menu4_2','menu4',"How-To Documents", "/support/");
	oM.makeMenu('menu4_3','menu4',"Anti-spam and Anti-virus Solution", "/support/", "_top", 175, 35);
	oM.makeMenu('menu4_4','menu4',"Check Your Billing", "/support/");
	oM.makeMenu('menu4_5','menu4',"Request a Change for Your Site", "/support/", "_top", 175, 35);
	oM.makeMenu('menu4_6','menu4',"View the Progress of Your Web Site", "/support/", "_top", 175, 35);

	
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("ABOUTUS");
//var dropmenu2 = new FindPosition("products");
//var dropmenu3 = new FindPosition("resources");
//var dropmenu4 = new FindPosition("support");

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