oM=new makeCM("oM"); 
oM.resizeCheck=0; 
oM.rows=1;  
oM.onlineRoot=""
oM.offlineRoot=""
oM.pxBetween=0; 
oM.fillImg="fiFiles/static/images/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='&nbsp;';

//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=90, finishopacity=90, style=1)";
oM.level[1]=new cm_makeLevel(210,20,"item_on","item_off",0,0,"bordercolor",0,"right",0,0,diImages+"d_tri.gif",12,12);
oM.level[0].roundBorder=1;


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;
/* original
	this.xPos += (this.ref_image.width - this.ref_image.width / 5);
*/
	this.xPos += this.ref_image.width; // customized for this FI
	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;
    this.yPos += (this.ref_image.height / 3);
/* original
    this.yPos += this.ref_image.height;
*/
	return this.yPos;
}


var dropmenu1 = new  FindPosition("os"); 
var dropmenu2 = new  FindPosition("pb");
var dropmenu3 = new  FindPosition("bb");
var dropmenu4 = new  FindPosition("loc");
var dropmenu5 = new  FindPosition("vs");
var dropmenu6 = new  FindPosition("ii");
var dropmenu7 = new  FindPosition("id");
var dropmenu8 = new  FindPosition("security");

function showMenu(menu){
	switch(menu){
		case "os": oM.m["os"].b.moveIt(dropmenu1.xPos,dropmenu1.yPos-5); break;		
		case "pb": oM.m["pb"].b.moveIt(dropmenu2.xPos,dropmenu2.yPos-5); break;
		case "bb": oM.m["bb"].b.moveIt(dropmenu3.xPos,dropmenu3.yPos-5); break;
		case "loc": oM.m["loc"].b.moveIt(dropmenu4.xPos,dropmenu4.yPos-5); break;
		case "vs": oM.m["vs"].b.moveIt(dropmenu5.xPos,dropmenu5.yPos-5); break;
		case "ii": oM.m["ii"].b.moveIt(dropmenu6.xPos,dropmenu6.yPos-5); break;
		case "id": oM.m["id"].b.moveIt(dropmenu7.xPos,dropmenu7.yPos-5); break;
		case "security": oM.m["security"].b.moveIt(dropmenu8.xPos,dropmenu8.yPos-5); break;
		} 
	oM.showsub(menu);
		}


