oCMenu=new makeCM("oCMenu"); //Making the menu object. Argument: menuname

//Menu properties   
oCMenu.pxBetween=00;
oCMenu.fromLeft=0;
oCMenu.fromTop=150;  
oCMenu.rows=0 ;
oCMenu.menuPlacement="left";
                                                             
oCMenu.offlineRoot="" ;
oCMenu.onlineRoot="" ;
oCMenu.resizeCheck=1 ;
oCMenu.wait=1000 ;
oCMenu.fillImg="cm_fill.gif";
oCMenu.zIndex=0;

//There are some differences between the browsers that I try to fix here.
//oCMenu.fromLeft=cmpage.x2/2 - 375
//We also need to "replace" the menu on resize. So:
//oCMenu.onresize="oCMenu.fromLeft=cmpage.x2/2 - 375"


//Background bar properties
oCMenu.useBar=1;
oCMenu.barWidth="menu";
oCMenu.barHeight="menu" ;
oCMenu.barClass="clBar";
oCMenu.barX="menu";
oCMenu.barY="menu";
oCMenu.barBorderX=0;
oCMenu.barBorderY=0;
oCMenu.barBorderClass="";

//Level properties - ALL properties have to be spesified in level 0
oCMenu.level[0]=new cm_makeLevel(); //Add this for each new level
oCMenu.level[0].width=103;
oCMenu.level[0].height=25 ;
oCMenu.level[0].regClass="clLevel0";
oCMenu.level[0].overClass="clLevel0over";
oCMenu.level[0].borderX=0;
oCMenu.level[0].borderY=0;
oCMenu.level[0].borderClass="clLevel0border";
oCMenu.level[0].offsetX=-10;
oCMenu.level[0].offsetY=10;
oCMenu.level[0].rows=0;
oCMenu.level[0].arrow=0;
oCMenu.level[0].arrowWidth=0;
oCMenu.level[0].arrowHeight=0;
oCMenu.level[0].align="right";

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[1]=new cm_makeLevel(); //Add this for each new level (adding one to the number)
// oCMenu.level[1].width=125;
oCMenu.level[1].width=135;
oCMenu.level[1].height=19;
oCMenu.level[1].regClass="clLevel1";
oCMenu.level[1].overClass="clLevel1over";
oCMenu.level[1].borderX=1;
oCMenu.level[1].borderY=1;
oCMenu.level[1].align="right" ;
//oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+0;
oCMenu.level[1].offsetX=100;
oCMenu.level[1].offsetY=0;
oCMenu.level[1].borderClass="clLevel1border";

oCMenu.makeMenu('top0','','Home','index.htm','','','36','images/pink2_r3_c1.jpg','images/pink2_r3_c1_f2.jpg');
oCMenu.makeMenu('top1', '','About;','about.htm','','',37,'images/pink2_r7_c1.jpg','images/pink2_r7_c1_f2.jpg');

oCMenu.makeMenu('top2','','Products','products.htm','','',42,'images/pink2_r4_c1.jpg','images/pink2_r4_c1_f2.jpg');
	oCMenu.makeMenu('sub2_1','top2','Easy Tote Changing Pad','changepad.htm');
	oCMenu.makeMenu('sub2_7','top2','Easy Tote Wash Cloths','washcloths.htm');
	oCMenu.makeMenu('sub2_2','top2','Nursing/Bath Blankets','nursing.htm');
	oCMenu.makeMenu('sub2_3','top2','Burp Cloths','burpcloth.htm');
	oCMenu.makeMenu('sub2_4','top2','Receiving Blankets','receiving.htm');
	oCMenu.makeMenu('sub2_5','top2','Clothing','clothing.htm');
	oCMenu.makeMenu('sub2_6','top2','Swaddling Blankets','swaddling.htm');

oCMenu.makeMenu('top3', '','Heirloom','heirloom.htm','','',43,'images/pink2_r5_c1.jpg','images/pink2_r5_c1_f2.jpg');
		oCMenu.makeMenu('sub3_1','top3','Heirloom','heirloom.htm');
	
oCMenu.makeMenu('top4', '','Shopping Cart','https://va.eftsecure.net/eftcart/viewcart.asp?M_id=019487898594','','',43,'images/shopping_cart.jpg','images/shopping_cart_roll.jpg');

oCMenu.makeMenu('top5', '','Contact','contact.htm','','',43,'images/pink2_r6_c1.jpg','images/pink2_r6_c1_f2.jpg');

oCMenu.makeMenu('top6', '','Retailers','shopping.htm','','',43,'images/Retailers.jpg','images/Retailers_roll.jpg');

// NEW MENU ITEM (CHECKOUT/GO TO CART) GOES HERE
// goes to redirect page
// or use direct url 'https://va.eftsecure.net/eftcart/viewcart.asp?M_id=019487898594'


//Leave this line
oCMenu.construct();	
