//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=300
oCMenu.fromTop=86
oCMenu.rows=1 
oCMenu.menuPlacement="center"
                                                             
oCMenu.offlineRoot="" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.zIndex=0

//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=128
oCMenu.level[0].height=19
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=1
oCMenu.level[0].borderY=1
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=0
oCMenu.level[0].rows=0
oCMenu.level[0].arrow=0
oCMenu.level[0].arrowWidth=0
oCMenu.level[0].arrowHeight=0
oCMenu.level[0].align="bottom"


//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=oCMenu.level[0].width-1
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="left" 
oCMenu.level[1].offsetX=245
oCMenu.level[1].offsetY=-1
oCMenu.level[1].borderClass="clLevel1border"

oCMenu.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[2].width=220
oCMenu.level[1].offsetX=333
oCMenu.level[1].offsetY=-0


/******************************************
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','','Our Hotels','','',105) 
        oCMenu.makeMenu('sub01','top0','&nbsp;&nbsp;in Cyprus','')
		                oCMenu.makeMenu('sub010','sub01','&nbsp;&nbsp;Apollonia Beach Hotel','/hotel_CYP_LIM-LAPO_Apollonia_Beach_Hotel.html')
						oCMenu.makeMenu('sub011','sub01','&nbsp;&nbsp;Louis Imperial Beach','/hotel_CYP_PFO-LIMB_Louis_Imperial_Beach.html')
						oCMenu.makeMenu('sub012','sub01','&nbsp;&nbsp;Iberostar Ledra Beach','/hotel_CYP_PFO-LLDB_Iberostar_Ledra_Beach.html')
						oCMenu.makeMenu('sub013','sub01','&nbsp;&nbsp;Louis Phaethon Beach','/hotel_CYP_PFO-LPHB_Louis_Phaethon_Beach.html')
						oCMenu.makeMenu('sub014','sub01','&nbsp;&nbsp;Louis King Jason','/hotel_CYP_PFO-LKJS_Louis_King_Jason.html')
						oCMenu.makeMenu('sub015','sub01','&nbsp;&nbsp;Louis Princess Beach','/hotel_CYP_LCA-LPRB_Louis_Princess_Beach.html')
						oCMenu.makeMenu('sub016','sub01','&nbsp;&nbsp;Louis Nausicaa Beach','/hotel_CYP_PRO-LNAB_Louis_Nausicaa_Beach.html')
						oCMenu.makeMenu('sub017','sub01','&nbsp;&nbsp;Louis Althea Beach','/hotel_CYP_PRO-ALTH_Louis_Althea_Beach.html')
						oCMenu.makeMenu('sub018','sub01','&nbsp;&nbsp;Louis Althea Kalamies Luxury Villas','/hotel_CYP_PRO-ALVL_Louis_Althea_Kalamies_Villas.html')
		oCMenu.makeMenu('sub02','top0','&nbsp;&nbsp;in Greece','')
		                oCMenu.makeMenu('sub020','sub02','&nbsp;&nbsp;Louis Creta Princess','/hotel_GRE_CHQ-LCPC_Louis_Creta_Princess.html')
						oCMenu.makeMenu('sub021','sub02','&nbsp;&nbsp;Louis Grand Hotel','/hotel_GRE_CFU-LGRH_Louis_Grand_Hotel.html')
						oCMenu.makeMenu('sub022','sub02','&nbsp;&nbsp;Louis Corcyra Beach','/hotel_GRE_CFU-LCCB_Louis_Corcyra_Beach.html')
						oCMenu.makeMenu('sub023','sub02','&nbsp;&nbsp;Iberostar Kerkyra Golf','/hotel_GRE_CFU-KRKG_Iberostar_Kerkyra_Golf.html')
						oCMenu.makeMenu('sub024','sub02','&nbsp;&nbsp;Iberostar Regency Beach','/hotel_GRE_CFU-RBE_Iberostar_Regency_Beach.html')
						oCMenu.makeMenu('sub025','sub02','&nbsp;&nbsp;Iberostar Regency Esperides','/hotel_GRE_CFU-RBES_Iberostar_Regency_Esperides_Ap.html')
						oCMenu.makeMenu('sub026','sub02','&nbsp;&nbsp;Louis Zante Beach','/hotel_GRE_ZTH-ZANB_Louis_Zante_Beach.html')
						oCMenu.makeMenu('sub027','sub02','&nbsp;&nbsp;Iberostar Plagos Beach','/hotel_GRE_ZTH-PLGS_Iberostar_Plagos_Beach.html')
						oCMenu.makeMenu('sub029','sub02','&nbsp;&nbsp;Louis Colossos Beach','/hotel_GRE_RHO-COLS_Louis_Colossos_Beach.html')
						oCMenu.makeMenu('sub0210','sub02','&nbsp;&nbsp;Mykonos Theoxenia','/hotel_GRE_MKN-THEO_Mykonos_Theoxenia.html')
		
	oCMenu.makeMenu('top1','','Destinations','')
		oCMenu.makeMenu('sub10','top1','&nbsp;&nbsp;Cyprus','/destinations_CYP_Cyprus.html')
		oCMenu.makeMenu('sub11','top1','&nbsp;&nbsp;Crete','/destinations_GRE_CRE_Crete.html')
		oCMenu.makeMenu('sub12','top1','&nbsp;&nbsp;Corfu','/destinations_GRE_CFU_Corfu.html')
		oCMenu.makeMenu('sub13','top1','&nbsp;&nbsp;Zakynthos','/destinations_GRE_ZTH_Zakynthos.html')
		oCMenu.makeMenu('sub14','top1','&nbsp;&nbsp;Rhodes','/destinations_GRE_RHO_Rhodes.html')
		oCMenu.makeMenu('sub15','top1','&nbsp;&nbsp;Mykonos','/destinations_GRE_JMK_Mykonos.html')
	oCMenu.makeMenu('top2','','Holiday Types','')
	    oCMenu.makeMenu('sub20','top2','&nbsp;&nbsp;Family','/holidaytypes_FR_Family.html')
		oCMenu.makeMenu('sub21','top2','&nbsp;&nbsp;Active','/holidaytypes_ACT_Active.html')
		oCMenu.makeMenu('sub22','top2','&nbsp;&nbsp;Relaxing','/holidaytypes_REL_Relaxing.html')
		oCMenu.makeMenu('sub23','top2','&nbsp;&nbsp;All Inclusive','/holidaytypes_AI_All_Inclusive.html')
		oCMenu.makeMenu('sub24','top2','&nbsp;&nbsp;Weddings','http://www.louishotelsweddings.com','_blank')
		oCMenu.makeMenu('sub25','top2','&nbsp;&nbsp;Conferences','/holidaytypes_CONF_Conference.html')
	
	oCMenu.makeMenu('top3','','Louis Hotel\'s map','/map.html','',155)        
	oCMenu.makeMenu('top4','','Special Offers','/specialoffers.html')					
	oCMenu.makeMenu('top5','','Home','/index.html')	
//Leave this line - it constructs the menu
oCMenu.construct()	