// ALLGEMEINE KONFIGURATION
// Menu object creation
flexMenu=new makeFM("flexMenu") // Making the menu object. Argument: menuname
// Menu properties   
flexMenu.pxBetween=0
flexMenu.fromLeft=width 				// Variable width + content_width erhalten wir von body.js
flexMenu.fromTop=105							// Menu-Abstand von oben
flexMenu.rows=1
flexMenu.menuPlacement="left"
                                                             
flexMenu.offlineRoot="" 
flexMenu.onlineRoot="" 
flexMenu.resizeCheck=2
flexMenu.wait=500 
flexMenu.fillImg="layout/1px_leer.gif"
flexMenu.zIndex=4

//Background bar properties
flexMenu.useBar=0

//Level properties - ALL properties have to be spesified in level 0
flexMenu.level[0]=new flexmenu_makeLevel() 	//Add this for each new level
flexMenu.level[0].width=115					// Standardbreite
flexMenu.level[0].height=21					// Standardhöhe
flexMenu.level[0].regClass="clLevel0"
flexMenu.level[0].overClass="clLevel0over"
flexMenu.level[0].borderX=0
flexMenu.level[0].borderY=0
flexMenu.level[0].borderClass="clLevel0border"
flexMenu.level[0].offsetX=-1 
flexMenu.level[0].offsetY=1
flexMenu.level[0].rows=0
flexMenu.level[0].align="bottom"

//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
flexMenu.level[1]=new flexmenu_makeLevel() 	//Add this for each new level (adding one to the number)
flexMenu.level[1].width=115					// Standardbreite
flexMenu.level[1].height=18					// Standardhöhe
flexMenu.level[1].regClass="clLevel1"
flexMenu.level[1].overClass="clLevel1over"
flexMenu.level[1].style=""
flexMenu.level[1].offsetX=2
flexMenu.level[1].offsetY=-1
flexMenu.level[1].borderClass="clLevel1border"
flexMenu.level[1].borderX=1 
flexMenu.level[1].borderY=1
flexMenu.level[1].rows=0
flexMenu.level[1].align="right"

//SUB LEVEL[2] PROPERTIES
flexMenu.level[2]=new flexmenu_makeLevel() //Add this for each new level (adding one to the number)

// ZIELVERZEICHNIS LEER WENN UNDEFINIERT
if (!target_dir) {
	var target_dir = "";
}

// NAVIGATION
// >>===================================================>> //
// name,parent,txt,lnk,targ,h,w,alt,img1,img2,cl,cl2,align,rows,nolink,onclick,onmouseover,onmouseout
// AB HIER NAVIGATION ANPASSEN:
//flexMenu.makeMenu('top01','','',target_dir+'test.htm','','50','über uns','navigation/ueber_uns01a.gif','navigation/ueber_uns01b.gif')
flexMenu.makeMenu('top01','','Porträt',target_dir+'alpha_immobilien_portrait_s01.htm','','74','','')
	
flexMenu.makeMenu('top02','','Dienstleistungen&nbsp',target_dir+'dienstleistungen_s01.htm','','142','','')

flexMenu.makeMenu('top03','','Verkaufsangebote',target_dir+'wohnobjekte_alpha-immobilien_s01.htm','','152','','')
	flexMenu.makeMenu('sub300','top03','Häuser',target_dir+'wohnobjekte_alpha-immobilien_s01.htm','','110')
	flexMenu.makeMenu('sub301','top03','Wohnungen',target_dir+'wohnungen_alpha-immobilien_s01.htm','','110')
	flexMenu.makeMenu('sub302','top03','Neubauprojekte',target_dir+'neubauprojekte_alpha-immobilien_s01.htm','','110')
	flexMenu.makeMenu('sub303','top03','Bauland',target_dir+'grundstuecke_alpha-immobilien_s01.htm','','110')
	flexMenu.makeMenu('sub304','top03','Gewerbeobjekte',target_dir+'gewerbebauten_alpha-immobilien_s01.htm','','110')
	
flexMenu.makeMenu('top04','','Vermietung',target_dir+'mietobjekte_alpha-immobilien_s01.htm','','113','','')

flexMenu.makeMenu('top05','','Schätzungen',target_dir+'schaetzungen_s01.htm','','121','','')
	
flexMenu.makeMenu('top06','','Kontakt',target_dir+'alpha_immobilien_kontakt_s01.htm','','92','','')

	
// <<===================================================<< //

// Leave this line - it constructs the menu
flexMenu.construct();
