
/*** 
This is the menu creation code - place it right after you body tag
Feel free to add this to a stand-alone js file and link it to your page.
**/

//Setting IE5.5 and IE6 to use dom creation for standard compatability - though you don't really need to
//bw.usedom=bw.ns6||bw.ie6||bw.ie55

var oM=new makeCM("oM")
oM.pxBetween=0
oM.fromTop=180
oM.fromLeft=15
oM.menuPlacement="left"
oM.wait=600
oM.fillImg="images/cm_fill.gif"
oM.zIndex=100 
oM.resizeCheck=1
oM.zIndex=10 

oM.onlineRoot="http://www.cheryldorko.com/"
oM.offlineRoot="file:///H|/Cheryl Dorko/"

oM.rows=0

//Background bar properties
oM.useBar=0
oM.barWidth="100%" 
oM.barHeight="menu"
oM.barX=0
oM.barY=70
oM.barClass="clBar" 
oM.barBorderX=0
oM.barBorderY=0
oM.barBorderClass="clB"


//Level properties
//Syntax for fast creation (advanced users only)
//oM.level[1]=new cm_makeLevel(width,height,regClass,overClass,borderX,borderY,borderClass,rows,align,offsetX,offsetY,arrow,arrowWidth,arrowHeight)

oM.level[0]=new cm_makeLevel(110, 35, "clT", "clTover", 0, 0, "clB", 0, "right",-10, 10, "images/arrow2.png", 13, 12);
oM.level[1]=new cm_makeLevel(150, 26, "clS", "clSover", 1, 1, "clB2", 0, "bottom", 5, 0, "images/menu_arrow.gif", 13, 11);
/*oM.level[2]=new cm_makeLevel();*/


/******************************************
Menu item creation:
myCoolMenu.makeMenu(1name, 2parent_name, 3text, 4link, 5target, 6width, 7height, 8regImage, 9overImage, 10regClass, 11overClass , 12align, 13rows, 14nolink, 15onclick, 16onmouseover, 17onmouseout) 
*************************************/

oM.makeMenu('m1','','Retirement','financialservices.html');
oM.makeMenu('m10','m1','Retirement Planning','financialservices.html','','180');
oM.makeMenu('m11','m1','401(k); 403(b); TSA Rollover','moreservices.html','','180');
oM.makeMenu('m12','m1','Asset Allocation','assetallocation.html','','180');
oM.makeMenu('m13','m1','Other Services','otherservices.html','','180','27','','','clS2','clSover2');

oM.makeMenu('m2','','Experience','financialexperience.html');

/*oM.makeMenu('m3','','Calculators','financialcalculators.html');
oM.makeMenu('m31','m3','Required Min. Distribution','rmdcalc.html','','160');
oM.makeMenu('m32','m3','401(k) Savings','financialcalculators.html','','160');
oM.makeMenu('m33','m3','Asset Calculator','financialcalculators.html#asset','','160','27','','','clS2','clSover2');
oM.makeMenu('m34','m3','Retirement Calculator');*/

oM.makeMenu('m4','','Related Links','financiallinks.html');

oM.makeMenu('m5','','Contact Us','contact.html');

oM.makeMenu('m6','','Investments','altinvestments.html');

oM.makeMenu('m7','','Fees','fees.html');

oM.makeMenu('m8','','Free Consultation','consultation.html');

oM.makeMenu('m0','','Home','index.html');
oM.makeMenu('m01','m0','Site Map','sitemap.html','','','27','','','clS2','clSover2');


oM.construct()


function loopNodes(){
  
}

