//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=7 // positioned using absolute positioning.  This is X pixels from left hand side.
oCMenu.fromTop=100  // X pixels from top of screen.
oCMenu.rows=0       // if vertical menu leave at 0 if horizontal flip to 1.
oCMenu.menuPlacement=0

oCMenu.offlineRoot="" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=300   // how long do you want the menu to wait before disapearing on mouseout.
oCMenu.fillImg="cm_fill.gif"  // background image for text - NS issue fix. - "./images/cm_fill.gif"
oCMenu.zIndex=10

//Background bar properties
oCMenu.useBar=1
oCMenu.barWidth="menu"  // Arrays to determine width and height.
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
oCMenu.barX="menu"
oCMenu.barY="menu"
oCMenu.barBorderX=0  // Add a border if you like.
oCMenu.barBorderY=0
oCMenu.barBorderClass=""


//Level properties - ALL properties have to be spesified in level 0
oCMenu.level[0]=new cm_makeLevel(102,22,"clT","clTover",1,1,"clB",0,"right",0,0,"",0,0);
// Sets width and height (first 2 #'s) of each cell.  If you don't want arrow gif, make images link zero, and set both 10's to zero.

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to spesify 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(160,120,"clS","clSover",1,1,"clB",0,"right",0,0,"menu_arrow.gif",10,10); 
oCMenu.level[1]=new cm_makeLevel(90,21,"clS","clSover",1,1,"clB",0,"right",0,0,"",0,0);
// same as above.


oCMenu.level[2]=new cm_makeLevel(110,22,"clS2","clS2over");
// another layer if desired.


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
//oCMenu.makeMenu('top0','',"Home",'http://www.FilterMy.Com/test/index.html','','','','','','','','','','','',"displayInfo('<font size=2 color=white><center>Back to<br>home page</center></font>')",'restore()')
	//oCMenu.makeMenu('sub01','top0','Text',"","",'','105')	

oCMenu.makeMenu('top1','','How it Works','http://www.filtermy.com/how.shtml','','','','http://www.filtermy.com/howu.jpg','http://www.filtermy.com/howd.jpg','','','','','','',"displayInfo('<center><font size=2 color=white><center>Details on<br>the services</font></center>')",'restore()')
//	oCMenu.makeMenu('sub01','top1','&nbsp;Your Account',"http://www.FilterMy.Com/email_account.shtml","",'','')
//	oCMenu.makeMenu('sub01','top1','&nbsp;Basic',"http://www.filtermy.com/how.shtml#basic","",'','')
//	oCMenu.makeMenu('sub02','top1','&nbsp;Advanced',"http://www.filtermy.com/how.shtml#advanced","",'','')
//	oCMenu.makeMenu('sub03','top1','&nbsp;Webmail',"http://www.filtermy.com/how.shtml#webmail","",'','')
	
//oCMenu.makeMenu('top2','','Features','http://www.FilterMy.Com/features.shtml','','','','','','','','','','','',"displayInfo('<center><font size=2 color=white><center>Description of<br>webmail<br>interface and<br>what you get</font></center>')",'restore()')
oCMenu.makeMenu('top2','','Account <br>Login','http://spam.yourspamdaddy.com','','','','http://www.filtermy.com/loginu.jpg','http://www.filtermy.com/logind.jpg','','','','','','',"displayInfo('<center><font size=2 color=white><center>Manage your<br>spam</font></center>')",'restore()')

//oCMenu.makeMenu('top3','','Affiliates','http://www.FilterMy.Com/affiliates.shtml','_blank','','','http://www.filtermy.com/affu.jpg','http://www.filtermy.com/affd.jpg','','','','','','',"displayInfo('<center><font size=2 color=white><center>Join our<br>affiliate<br>program</font></center>')",'restore()')

oCMenu.makeMenu('top4','','FAQ','http://www.filtermy.com/faq.shtml','','','','http://www.filtermy.com/faqu.jpg','http://www.filtermy.com/faqd.jpg','','','','','','',"displayInfo('<center><font size=2 color=white><center>Questions and<br>answers,<br>system<br>and technical</font></center>')",'restore()')

// oCMenu.makeMenu('top5','','News','http://www.filtermy.com/blog/','','','','http://www.filtermy.com/newsu.jpg','http://www.filtermy.com/newsd.jpg','','','','','','',"displayInfo('<font size=2 color=white><center>FilterMy.Com<br>information<br>and updates</center></font>')",'restore()')

//oCMenu.makeMenu('top4','','Contact Us','http://www.FilterMy.Com/contact.shtml')


//Leave this line - it constructs the menu
oCMenu.construct()	



