// Global config


var category;
category='about'
var active;
active='profil'
var objs = new Array();
var menuObjs =new Array();



function main(){

menuObjs[0]=new divs ('rightMenu');
objs[0]=new divs ("main");
objs[1]=new divs ("head");
objs[2]=new divs ("headright");
objs[3]=new divs ("left"); //list pages
objs[4]=new divs ("right");
menuObjs[0].writeIt(menuStr()); //write submenu
writeList();
			 loadPage();

	}


function Err (cod, id){
var er=new Array();
if (id) er[0]='Cannot find the layer '+id+' Check IDs';
er[2]='Too old or unsupported browser ';
er[3]='Problems with client size';
er[4]='writeMenu:: Cannot write menu';
er[5]='Name '+id+' does not exist in TransMenu';
er[6]='TracePath:: path to '+id+' cannot be formed. Is category set ??';
er[7]='MenuMain:: Obj ' + id + ' is not specified' ;
er[8]='MenuMain:: Class or id of' + id + ' is not specified. Check markup';
   		alert(er[cod]);
  return false
 }

var  transMenu=[
				['profil','Profil'],
				['repertoire','Repertoire'],
				['leiter','Chorleiter'],
				['timing','Konzerttermine'],
				['termine','Termine für Sängerinnen'],
				['beispiele','Hörbeispiele'],
				['concert','Konzerte'],				
				['2000', 'Chorreise 2006'],
				['beswingt', 'FF beswingt'],
				['konzert', 'Konzert Stabat Mater'],
				['chorprobe', 'Chorprobe 11.06'],	
				['reise', 'Chorreise September 2007'],	
				['impressum','Impressum'],
				['contact','Kontakt'],
				['about','Über uns'],
				['actuals', 'Aktuelles'],
				['history','Historie'],
				['gallery', 'Galerie'],
				['noten', 'Aktuelle Noten'],
				['beswingt', 'Beswingt'],
				['britten', 'Benjamin Britten'],
				['archiv', 'Archiv'],
				['chor', 'Chor'],				
				['2001', '2001'],
				['2002', '2002'],
				['2003', '2003'],
				['2004', '2004'],
				['2005', '2005'],
				['2006', '2006'],
				['2007', '2007'],
				['2008', '2008'],
				['2009', '2009'],
				['romantic', 'Romantikkonzert'],
				['weinnacht', 'Weihnachtslieder'],
				['missarrevis', 'Missa Brevis']

];


var subMenu = new Array();


subMenu.actuals=[
				  ['timing', 'menuMain(this)'],
				  ['termine', 'menuMain(this)'],
				  ['noten', 'menuMain(this)']
				   ];
subMenu.about =  [
			   ['profil', 'menuMain(this)'],
			   ['repertoire', 'menuMain(this)'],
		       ['leiter', 'menuMain(this)']			   
			   ];
subMenu.beispiele = [
				 ['beispiele', 'menuMain(this)']
				 ];
subMenu.history = [
				  ['2001', 'menuMain(this)'],
 				 ['2003', 'menuMain(this)'],
				 ['2004', 'menuMain(this)'],
 				 ['2005', 'menuMain(this)'],
    			 ['2006', 'menuMain(this)'],			 
     			 ['2007', 'menuMain(this)'],			 
     			 ['2008', 'menuMain(this)'],			 
      			 ['2009', 'menuMain(this)'],
				 ['concert', 'menuMain(this)']
				 ];
subMenu.gallery = [ 
			   ['chor', 'menuMain(this)']
				];					  
				 
subMenu.contact = [
				 ['contact', 'menuMain(this)']
				 ];
subMenu.impressum = [
				 ['impressum', 'menuMain(this)']
				 ];
subMenu.archiv = [
				 ['archiv', 'menuMain(this)'],
				  ["beswingt", "menuMain(this)"],
				  ["britten", "menuMain(this)"],
				   ["romantic", "menuMain(this)"],
				   ["weinnacht", "menuMain(this)"],
				   ["missarrevis", "menuMain(this)"]
				 ];

