//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=5 // positioned using absolute positioning.  This is X pixels from left hand side.
oCMenu.fromTop=80  // 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(105,23,"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(125,25,"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','index.shtml')
	//oCMenu.makeMenu('sub01','top0','Text',"","",'','105')	
	
oCMenu.makeMenu('top1','','Anti Spam','anti-spam.shtml')

oCMenu.makeMenu('top2','','Anti Virus','anti-virus.shtml')

oCMenu.makeMenu('top3','','How it Works','howitworks.html', '_blank')

oCMenu.makeMenu('top4','','FAQ','faq.shtml')

oCMenu.makeMenu('top5','','Contact Us','contact.shtml')

oCMenu.makeMenu('top6','','','','','','13','bar.jpg')

oCMenu.makeMenu('top7','','Home User','http://www.filtermy.com')

oCMenu.makeMenu('top8','','Small Business','smbiz.shtml')

oCMenu.makeMenu('top9','','Enterprise','http://www.kcsmarketing.com/consult.htm')

//Leave this line - it constructs the menu
oCMenu.construct()	

