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(1,1,"bordercolor","bordercolor",0,0,"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(180,22,"item_off","item_on",1,1,"bordercolor",0,"right",0,0,imgdir+"dhtml-arrow.gif",9,9);
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) 
*************************************/

//Communities
oM.makeMenu('menu1');
	oM.makeMenu('menu1_1','menu1',"Communities", "find-anhd.php");
	oM.makeMenu('menu1_2','menu1',"Resale", "resale-main.php");
	oM.makeMenu('menu1_3','menu1',"Bank Owned", "bankowned.php");	
    oM.makeMenu('menu1_4','menu1',"Lease Purchase", "find-lease.php");
    oM.makeMenu('menu1_5','menu1',"Gated Communities", "find-gated.php");	
    oM.makeMenu('menu1_6','menu1',"Beyond Our Communities", "find-beyond.php");	
	
oM.makeMenu('menu2');
	oM.makeMenu('menu2_1','menu2',"Resale Office", "resale-office.php");		
	//oM.makeMenu('menu2_2','menu2',"Beyond our Communities", "new-beyond.php");		
	//oM.makeMenu('menu2_3','menu2',"Home Construction Process", "new-construction.php");	
	
oM.makeMenu('menu3');
	//oM.makeMenu('menu3_1','menu3',"Resale Office", "resale-office.php");		
	//oM.makeMenu('menu3_2','menu3',"Resale Homes List", "resale-list.php");	
	
oM.makeMenu('menu4');
	oM.makeMenu('menu4_1','menu4',"Meet the Team", "about-team.php");		
	oM.makeMenu('menu4_2','menu4',"Experience the Difference", "about-experience.php");		
	oM.makeMenu('menu4_3','menu4',"History &amp; Awards", "about-history.php");	
	oM.makeMenu('menu4_4','menu4',"Giving Back", "about-giving.php");		
	oM.makeMenu('menu4_5','menu4',"Testimonials", "about-testimonials.php");

oM.makeMenu('menu5');
	//oM.makeMenu('menu4_1','menu4',"What's New", "about-whatsnew.php");		
	//oM.makeMenu('menu4_2','menu4',"Coming Soon", "#");		
	//oM.makeMenu('menu4_3','menu4',"Buyer Resources", "#");	
	//oM.makeMenu('menu4_4','menu4',"Seller Resources", "#");		
	//oM.makeMenu('menu4_5','menu4',"Calendar of Events", "#");		


oM.menuPlacement=new Array(0);
oM.construct();

function FindPosition(id){
    
    this.id = id;
    this.xPos = 500;
    this.yPos = 500;
    this.ref_image = document.getElementById(id);
    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;
}

function showMenu(menu){
var dropmenu1 = new FindPosition("menu1");
var dropmenu2 = new FindPosition("menu2");
var dropmenu3 = new FindPosition("menu3");
var dropmenu4 = new FindPosition("menu4");
var dropmenu5 = new FindPosition("menu5");
	switch(menu){
		case "menu1":
		oM.m["menu1"].b.moveIt(dropmenu1.xPos,dropmenu1.yPos + 26);
		break;
		case "menu2":
		oM.m["menu2"].b.moveIt(dropmenu2.xPos,dropmenu2.yPos + 26);
		break;
		case "menu3":
		oM.m["menu3"].b.moveIt(dropmenu3.xPos,dropmenu3.yPos + 26);
		break;
		case "menu4":
		oM.m["menu4"].b.moveIt(dropmenu4.xPos,dropmenu4.yPos + 26);
		break;
		case "menu5":
		oM.m["menu5"].b.moveIt(dropmenu5.xPos,dropmenu5.yPos + 26);
		break;
	} 
	oM.showsub(menu);
}

function hideMenu(){
oM.mout();
}
//end of file