/*var newH = 48;
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=500; 
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,"","",0,0,"clB",0,"bottom",0,0,0,0,0);
oM.level[0].filter="PROGID:DXImageTransform.Microsoft.Alpha(opacity=95, finishopacity=95, style=1)";
oM.level[1]=new cm_makeLevel(170,22,"item_off","item_on",0,0,"clB",0,"right",0,0,imgdir+"tri.gif",8,14);
oM.level[0].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) 
*************************************/



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("accountservices");
var dropmenu2 = new FindPosition("loans");
var dropmenu3 = new FindPosition("mortgages");
var dropmenu4 = new FindPosition("convenience");
var dropmenu5 = new FindPosition("resources");
var dropmenu6 = new FindPosition("about");
var dropmenu7 = new FindPosition("gettingstarted");


var xOffset = 1;
var yOffset = 27;

function showMenu(menu){
	switch(menu){
		case "ps":
		oM.m["ps"].b.moveIt(dropmenu1.xPos+xOffset,dropmenu1.yPos+yOffset);
		break;
		case "lcc":
		oM.m["lcc"].b.moveIt(dropmenu2.xPos+xOffset,dropmenu2.yPos+yOffset);
		break;		
		case "m":
		oM.m["m"].b.moveIt(dropmenu3.xPos+xOffset,dropmenu3.yPos+yOffset);
		break;		
		case "cs":
		oM.m["cs"].b.moveIt(dropmenu4.xPos+xOffset,dropmenu4.yPos+yOffset);
		break;		
		case "rt":
		oM.m["rt"].b.moveIt(dropmenu5.xPos+xOffset,dropmenu5.yPos+yOffset);
		break;		
		case "ab":
		oM.m["ab"].b.moveIt(dropmenu6.xPos+xOffset,dropmenu6.yPos+yOffset);
		break;		
		case "bm":
		oM.m["bm"].b.moveIt(dropmenu7.xPos+xOffset,dropmenu7.yPos+yOffset);
		break;		
			
	}
	oM.showsub(menu);
}*/
//end of file

