<!--

var Pcurrent= "FOCUS";
var Scurrent= "Overview";
var Tcurrent="Spectroscopic Modelling";


function setupMenu(){
// Note: you cannot use PIPES ('|') or single quotes in your array entries or 
// they will be split and produce errors in the functioning of the script.
//
// Each line is its own NAV item and must be called in hierarchical tree/outline format in the format format of:
// 'IMAGE' [for primary nav only], 'LABEL','DIRECTORY','FULL PATH FROM ROOT','SUBNAV BIT'
//
// IF a nav item has a subnav item, you MUST specify the bit properly (1) - and vice versa - or JavaScript will throw errors

AddPrimaryNav('CNRS-CRMHT','http://crmht.cnrs-orleans.fr','1');
                AddSecondaryNav('OTP','http://crmht.cnrs-orleans.fr/pot/POT.HTML','0');
		AddSecondaryNav('RTPM','http://crmht.cnrs-orleans.fr/pot/grptm/GRPTM.html','0');		
AddPrimaryNav('FOCUS','focus.html','1');
	        AddSecondaryNav('Overview','overview.html','0');
		AddSecondaryNav('User Interface','user-interface.html','0');
		AddSecondaryNav('Built-In Functions','functions.html','0');	
                AddSecondaryNav('Data Analysis','data-analysis.html','0');
                AddSecondaryNav('Examples','examples.html','0');

AddPrimaryNav('OSML','osml.html','1');
		AddSecondaryNav('Overview','osml.html','0');
		AddSecondaryNav('Librairies','libraries/handbook.html','0');

	
}


// -->