
/******************* MENU NUMBER 1 **********************************/

/*** 
This is the menu creation code - place it right after you body tag
Feel free to add this to a stand-alone js file and link it to your page.
**/

//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=12 
oCMenu.fromTop=106   
oCMenu.rows=1
oCMenu.menuPlacement=0

oCMenu.offlineRoot="file:///P:/Web%20v4/" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=500 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=0
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=90
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=0
oCMenu.level[0].offsetX=0 
oCMenu.level[0].offsetY=25
oCMenu.level[0].rows=0


//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() //Add this for each new level (adding one to the number)
oCMenu.level[1].width=oCMenu.level[0].width-2
oCMenu.level[1].height=22
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].style=""
oCMenu.level[1].align="bottom" 
oCMenu.level[1].offsetX=(oCMenu.level[1].width) + oCMenu.level[0].width
oCMenu.level[1].offsetY=-14
oCMenu.level[1].borderClass="clLevel1border"
oCMenu.level[1].borderX=1 
oCMenu.level[1].borderY=1
oCMenu.level[1].rows=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('top1','','About us','','',85)
	oCMenu.makeMenu('sub10','top1','Company','about_us.htm','',100)
	/*oCMenu.makeMenu('sub11','top1','Vision','vision.htm','',100)*/
	oCMenu.makeMenu('sub12','top1','Management','management.htm','',100)
	oCMenu.makeMenu('sub13','top1','Legal','legal.htm','',100)
oCMenu.makeMenu('top2','','Products & Services','','',160)
	oCMenu.makeMenu('sub21','top2','Systems Biology','systems_biology.htm','',210)
	oCMenu.makeMenu('sub22','top2','Pharmacodynamic Modelling','pd_modelling.htm','',210)
		oCMenu.makeMenu('sub220','sub22','Cell Cycle','cell_cycle.htm','',110)
		oCMenu.makeMenu('sub221','sub22','Apoptosis','apoptosis.htm','',110)
		oCMenu.makeMenu('sub222','sub22','Growth Factors','growth_factors.htm','',110)
	oCMenu.makeMenu('sub23','top2','Pharmacokinetic Modelling','pk_modelling.htm','',210)
	oCMenu.makeMenu('sub24','top2','Combined PK-PD Modelling','combined_modelling.htm','',210)
		oCMenu.makeMenu('sub240','sub24','Chronotherapy (TEMPO)','chronotherapy.htm','',150)
		oCMenu.makeMenu('sub241','sub24','Virtual Tumour','virtual_tumour.htm','',150)
	oCMenu.makeMenu('sub25','top2','ModelPlayer','model_player.htm','',210)
	oCMenu.makeMenu('sub26','top2','FAQs & Literature','literature.asp','',210)
oCMenu.makeMenu('top3','','Partnering','','',100)
	oCMenu.makeMenu('sub30','top3','Partners','partners.htm','',160)
	oCMenu.makeMenu('sub31','top3','Working with Physiomics','working.htm','',160)

//Leave this line - it constructs the menu
oCMenu.construct()		



/******************* MENU NUMBER 2 **********************************/



/*** 
This is the menu creation code - place it right after you body tag
Feel free to add this to a stand-alone js file and link it to your page.
**/

//Menu object creation
oCMenu2=new makeCM("oCMenu2") //Making the menu object. Argument: menuname

//Menu properties   
oCMenu2.pxBetween=0
oCMenu2.fromLeft=500
oCMenu2.fromTop=106   
oCMenu2.rows=1 
oCMenu2.menuPlacement=0
                                                             
oCMenu2.offlineRoot="file:///P:/Web%20v4/" 

oCMenu2.onlineRoot="" 
oCMenu2.resizeCheck=1 
oCMenu2.wait=500 
oCMenu2.fillImg="cm_fill.gif"
oCMenu2.zIndex=0

//Background bar properties
oCMenu2.useBar=0
oCMenu2.barWidth="menu"
oCMenu2.barHeight="menu" 
oCMenu2.barClass="cl2Bar"
oCMenu2.barX=0 
oCMenu2.barY=0
oCMenu2.barBorderX=0
oCMenu2.barBorderY=0
oCMenu2.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
oCMenu2.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu2.level[0].width=80
oCMenu2.level[0].height=25 
oCMenu2.level[0].regClass="cl2Level0"
oCMenu2.level[0].overClass="cl2Level0over"
oCMenu2.level[0].borderX=0
oCMenu2.level[0].borderY=0
oCMenu2.level[0].borderClass="cl2Level0border"
oCMenu2.level[0].offsetX=0
oCMenu2.level[0].offsetY=0
oCMenu2.level[0].rows=0
oCMenu2.level[0].arrow=0
oCMenu2.level[0].arrowWidth=0
oCMenu2.level[0].arrowHeight=0
oCMenu2.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
oCMenu2.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu2.level[1].width=oCMenu2.level[0].width-2
oCMenu2.level[1].height=22
oCMenu2.level[1].regClass="cl2Level1"
oCMenu2.level[1].overClass="cl2Level1over"
oCMenu2.level[1].borderX=1
oCMenu2.level[1].borderY=1
oCMenu2.level[1].align="bottom" 
oCMenu2.level[1].offsetX=(oCMenu2.level[1].width)
oCMenu2.level[1].offsetY=-1
oCMenu2.level[1].borderClass="cl2Level1border"


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/

oCMenu2.makeMenu('top3','','News & Events','','',120)
	oCMenu2.makeMenu('sub30','top3','Press Releases','press-releases.htm','',150)
	oCMenu2.makeMenu('sub31','top3','Events','events.htm','',150)
	oCMenu2.makeMenu('sub32','top3','Media Coverage','media.htm','',150)
oCMenu2.makeMenu('top0','','Investors','','',90)
	oCMenu2.makeMenu('sub00','top0','About us','about_us_investors.htm','',150)
	oCMenu2.makeMenu('sub01','top0','Share Information','share-price.htm','',150)
	oCMenu2.makeMenu('sub02','top0','Board of Directors','directors.htm','',150)
	oCMenu2.makeMenu('sub03','top0','Corporate Governance','governance.htm','',150)
	oCMenu2.makeMenu('sub04','top0','Company Advisors','advisors.htm','',150)
	oCMenu2.makeMenu('sub06','top0','Investors News / RNS','rns.htm','',150)
	oCMenu2.makeMenu('sub07','top0','Reports & prospectus','reports.htm','',150)
	oCMenu2.makeMenu('sub08','top0','Registration','registration.htm','',150)
	oCMenu2.makeMenu('sub09','top0','Contact Us','contact.htm','',150)
oCMenu2.makeMenu('top1','','Careers','careers.htm','',70)
oCMenu2.makeMenu('top2','','Contact Us','','',80)
	oCMenu2.makeMenu('sub20','top2','Contact Us','contact.htm','',100)
	oCMenu2.makeMenu('sub21','top2','Location','clocation.htm','',100)

//Leave this line - it constructs the menu
oCMenu2.construct()		