//Making a menu object
oMenu=new menuObj('oMenu') //Place a name for the menu in there. Must be uniqe for each menu

//Setting menu object variables

//Style variables NOTE: The stylesheet have been removed. Use this instead! (some styles are there by default, like position:absolute ++)
oMenu.clMain='padding:5px; font-family:verdana; font-size:11px; font-weight:bold' //The style for the main menus
oMenu.clSub='padding:5px; font-family:verdana; font-size:11px' //The style for the submenus
oMenu.clSubSub='padding:5px; font-family:verdana; font-size:10px' //The style for the subsubmenus
oMenu.clAMain='text-decoration:none; color:White' //The style for the main links
oMenu.clASub='text-decoration:none; color:White' //The style for the sub links


//Background bar properties
oMenu.backgroundbar=0 //Set to 0 if no backgroundbar
oMenu.backgroundbarfromleft=0 //The left placement of the backgroundbar in pixel or %
oMenu.backgroundbarfromtop=70 //The top placement of the backgroundbar  in pixel or %
oMenu.backgroundbarsize="100%" //The size of the bar in pixel or %
oMenu.backgroundbarcolor="#B5B5B5" //The backgroundcolor of the bar

oMenu.mainheight=17 //The height of the main menuitems in pixel or %
oMenu.mainwidth=120 //The width of the main menuitems  in pixel or %

/*These are new variables. In this example they are set like the previous version*/
oMenu.subwidth=oMenu.mainwidth // ** NEW ** The width of the submenus
oMenu.subheight=20 //The height if the subitems in pixel or % 

oMenu.subsubwidth=oMenu.mainwidth // ** NEW ** The width of the subsubmenus in pixel or % 
oMenu.subsubheight=oMenu.subheight //** NEW ** The height if the subsubitems in pixel or % 


//Writing out the style for the menu (leave this line!)
oMenu.makeStyle()

oMenu.subplacement=oMenu.mainheight //** NEW ** Relative to the main item
oMenu.subsubXplacement=oMenu.subwidth/2 //** NEW ** The X placement of the subsubmenus, relative to the sub item
oMenu.subsubYplacement=7 //** NEW ** The Y placement of the subsubmenus, relative to the sub item

oMenu.mainbgcoloroff='#666633' //The backgroundcolor of the main menuitems
oMenu.mainbgcoloron='#000000' //The backgroundcolor on mouseover of the main menuitems
oMenu.subbgcoloroff='#996600' //The backgroundcolor of the sub menuitems
oMenu.subbgcoloron='#000000' //The backgroundcolor on mouseover of the sub menuitems
oMenu.subsubbgcoloroff='#003399' //The backgroundcolor of the subsub menuitems
oMenu.subsubbgcoloron='#996666' //The backgroundcolor on mouseover of the subsub menuitems
oMenu.stayoncolor=0 //Do you want the menus to stay on the mouseovered color when clicked?

oMenu.menuspeed=10 //The speed of the clipping in px
oMenu.menusubspeed=15 //The speed of the submenus clipping in px

oMenu.menurows=1 //Set to 0 if you want rows and to 1 if you want columns

oMenu.menueventon="mouse" //Set this to "mouse" if you want the menus to appear onmouseover, set it to "click" if you want it to appear onclick
oMenu.menueventoff="mouse" //Set this to "mouse" if you them to disappear onmouseout, if not set it to "click"

//Placement of the menuitems

//Example in %:
//oMenu.menuplacement=new Array("20%","40%","60%","50%","65%") //Remember to make the arrays contain as many values as you have main menuitems

//Example in px: (remember to use the ' ' around the numbers)
//oMenu.menuplacement=new Array(10,200,300,400,500)

//Example right beside eachother (only adding the pxbetween variable)
oMenu.menuplacement=0

//If you use the "right beside eachother" you cant how many pixel there should be between each here
oMenu.pxbetween=2 //in pixel or %

//And you can set where it should start from the left here
oMenu.fromleft=160 //in pixel or %

//This is how much from the top the menu should be.
oMenu.fromtop=95 //in pixel or %

//MAIN 0

//Main items:
// makeMain(MAIN_NUM,'TEXT','LINK','FRAME_TARGET') (set link to 0 if you want submenus of this menu item)
oMenu.makeMain(0,'Host City',0)
	//Sub items:
	// makeSub(MAIN_NUM,SUB_NUM,'TEXT','LINK',TOTAL,'FRAME_TARGET') (set link to 0 if you want submenus of this menu item)
	oMenu.makeSub(0,0,'Langkawi','hostcity/index.htm',1,'_self')

		//MAIN 1		
oMenu.makeMain(1,'Lima 2001',0)
	oMenu.makeSub(1,0,'Exhibitors','2001/exhibitors.htm',3,'_self')
	oMenu.makeSub(1,1,'The Exhibits','2001/exhibits.htm',3,'_self')
	oMenu.makeSub(1,2,'Daily Record','2001/records.htm',3,'_self')
		

//MAIN 2		
oMenu.makeMain(2,'Partners',0)
	oMenu.makeSub(2,0,'LADA Online','http://LADA.MyLangkawi.com ',4,'_blank')
	oMenu.makeSub(2,1,'Web Service Provider','http://www.u2networks.com ',4,'_blank')
	oMenu.makeSub(2,2,'Hardware Partners','http://www.winfred.net',4,'_blank')
	oMenu.makeSub(2,3,'Site Hosting','http://www.Cyberica.net',4,'_blank')
//MAIN 3

oMenu.makeMain(3,'Features',0)
	oMenu.makeSub(3,0,'World Air Forces','features/airforce.htm',4,'_self')
	oMenu.makeSub(3,1,'Satellite Tracking','http://liftoff.msfc.nasa.gov/RealTime/JTrack/3d/JTrack3D.html',4,'_blank')
	oMenu.makeSub(3,2,'Online Newsgroup','http://e-life.u2asean.com',4,'_blank')
	oMenu.makeSub(3,3,'Aerospace News','features/news.htm',4,'_self')


//MAIN 4
oMenu.makeMain(4,'Home','index.htm',0)
	
		
/********************************************************************************
End menu construction
********************************************************************************/
		
		
//When all the menus are written out we initiates the menu
oMenu.construct()