	var	entries	=	10;

	var	lo		=	new	Array();
	var	hi		=	new	Array();
	var	loaded	=	false;
	var	positions	=	new	Array();
	
	function	setup()
	{
		for( var i=1; i<=entries; i++ )
		{
			lo[i]		=	new	Image();
			lo[i].src	=	"/img/nav/m"+i+"_0.gif";
			hi[i]		=	new	Image();
			hi[i].src	=	"/img/nav/m"+i+"_1.gif";

			if( act==i )
				document['menu'+i].src	=	hi[i].src;
		}

		// get menu positions
		for( i=1; i <= 10; i++ )
		{
			var temp	=	mdl_getImage( "menu"+i );
			if( typeof temp.src != "undefined" )
			{
				positions[i]	=	mdl_getImageX( temp );
				items[i].setPos( positions[i], mdl_getImageY( temp ) + temp.height -1 );
			}
		}
		menu.init();	
		loaded	=	true;
	}

	function	hilight( nr )
	{
		if( loaded ) 
			menu.showMenu( nr );
	}

	function	lower( nr )
	{
		if( loaded ) 
			menu.hideMenu();
	}

	function	selectMenu( nr )
	{
		var	actbak	=	act;
		act			=	nr;
		
		if( actbak != 0 )
			lower( actbak );
		if( act != 0 )
			hilight( act );
	}

/**
*	Wrapper for all menus
*
*/
	function	dhtmlMenu()
	{
		this.menuCnt		=	0;
		this.menus			=	new	Array();

		this.checkTimer		=	false;

		this.enteredCurrent	=	false;
		this.currentMenu	=	false;
		this.imgPath		=	0;
		this.depth			=	100;
		
		this.addChild		=	menuAddChild;
		this.printCSS		=	menuPrintCSS;
		this.printDiv		=	menuPrintDiv;
		this.init			=	menuInit;

		this.showMenu		=	menuShowMenu;
		this.hideMenu		=	menuHideMenu;
		this.doHideMenu		=	menuDoHideMenu;

		this.hilightEntry	=	menuHilightEntry;
		this.lowerEntry		=	menuLowerEntry;
		this.checkMenu		=	menuCheckMenu;
		this.setDepth		=	setDepth;
		this.setImgPath		=	setImgPath;
	}

	function	menuAddChild( child )
	{
		child.setId( "mm" + this.menuCnt );
		child.setDepth( this.depth );

		child.nr					=	this.menuCnt;
		this.menus[this.menuCnt++]	=	child;
	}

	function	menuInit()
	{
		for( var i=0; i<this.menus.length; i++ )
		{
			this.menus[i].init();
		}
	}

	function	setImgPath( path )
	{
		this.imgPath	=	path;
	}

	function	menuPrintCSS()
	{
		document.writeln( '<style type="text/css">' );
		for( var i=0; i<this.menus.length; i++ )
		{
			this.menus[i].printCSS();
		}
		document.writeln( '</style>' );
	}
	
	function	menuCheckMenu()
	{
		if( this.currentMenu < 0 )
			return	false;

		if( this.enteredCurrent )
		{
			if( mdl_checkMouseInLayer( this.menus[this.currentMenu].layer ) )
				this.checkTimer		=	setTimeout( "menu.checkMenu()", 100 );
			else
				this.doHideMenu( this.currentMenu );
		}

		//	Menü schon aufgeklickt, war aber noch nicht drin!
		else
		{
			if( mdl_checkMouseInLayer( this.menus[this.currentMenu].layer ) )
				this.enteredCurrent	=	true;

			this.checkTimer		=	setTimeout( "menu.checkMenu()", 1000 );
		}
	}

	function	menuPrintDiv()
	{
		for( var i=0; i<this.menuCnt; i++ )
			this.menus[i].printDiv();
	}

	function	menuHideMenu()
	{
		this.enteredCurrent	=	true;
		this.checkTimer		=	setTimeout( "menu.checkMenu()", 1500 );
	}

	function	menuDoHideMenu( nr )
	{
		if( nr < 0 )
			return	false;
			
		mdl_hideLayer( this.menus[nr].layer );
		if( (nr+1) != act )
			document['menu'+(nr+1)].src	=	lo[(nr+1)].src;

		this.currentMenu	=	-1;
	}
	
	function	menuShowMenu( nr )
	{
		clearTimeout( this.checkTimer );
		nr--;

		if( nr < 0 )
			return	false;

		//	hide all other menus
		for( var i=0; i<this.menuCnt; i++ )
			this.doHideMenu( i );
		
		mdl_showLayer( this.menus[nr].layer );
		document['menu'+(nr+1)].src	=	hi[(nr+1)].src;

		this.currentMenu	=	nr;
		this.enteredCurrent	=	false;
		this.checkMenu();
	}

	function	menuHilightEntry( menu, entry )
	{
		if( this.currentMenu != menu )
			this.showMenu( menu );

		this.menus[menu].hilightEntry( entry );
	}
	
	function	menuLowerEntry( menu, entry )
	{
		this.menus[menu].lowerEntry( entry );
	}
	
/**
*	Dropdown menu
*
*/
	function	ddMenu( x, y, imgPath )
	{
		this.x			=	x;
		this.y			=	y;
		this.imgPath	=	imgPath;

		this.nr			=	0;

		this.borderColor	=	"#000000";
		this.bgColor		=	"#990000";
		this.bgColorHi		=	"#FFFFFF";

		this.txtColor		=	"#FFFFFF";
		this.txtColorHi		=	"#000000";
		
		this.entries		=	new	Array();
		this.entryCnt		=	0;

		this.width			=	0;
		this.tops			=	new	Array();
		this.bottoms		=	new	Array();
		
		//	Methoden
		this.setId			=	setId;
		this.setRefEntry	=	setRefEntry;
		this.addEntry		=	ddAddEntry;
		this.printCSS		=	ddPrintCSS;
		this.printDiv		=	ddPrintDiv;
		this.init			=	ddInit;
		this.setPos			=	ddSetPos;
		
		this.setDepth		=	setDepth;
		
		this.setBorderColor	=	setBorderColor;
		this.setBgColors	=	setBgColors;
		this.setTxtColors	=	setTxtColors;
		this.hilightEntry	=	ddHilightEntry;
		this.lowerEntry		=	ddLowerEntry;
	}

	function	ddHilightEntry( entry )
	{
		if( document.getElementById )
		{
			var	tmp									=	document.getElementById( "m"+this.nr+"td"+entry );
			tmp.lastChild.style.color				=	this.txtColorHi;
			tmp.parentNode.style.backgroundColor	=	this.bgColorHi;
		}
	}

	function	ddLowerEntry( entry )
	{
		if( document.getElementById )
		{
			var	tmp									=	document.getElementById( "m"+this.nr+"td"+entry );
			tmp.lastChild.style.color				=	this.txtColor;
			tmp.parentNode.style.backgroundColor	=	this.bgColor;
		}
	}

	function	ddSetPos( x,y )
	{
		this.x	=	x;
		this.y	=	y;
	}
	
	
	function	ddAddEntry( text, url, target )
	{
		this.entries[this.entryCnt++]	=	new menuEntry( text, url, target );
	}
	
	function	ddInit()
	{
		this.layer	=	mdl_getLayer( this.id );
		mdl_moveLayerTo( this.layer, this.x, this.y );
	}
	
	function	ddPrintCSS()
	{
		document.writeln( '#' + this.id + '		{position: absolute; top:0px; left:0px; visibility: hidden; z-Index:' + this.depth + '; }' );
	}

	function	ddPrintDiv()
	{
		
		document.writeln( starttag + '"' + this.id + '">' );
	
	
		if( this.entryCnt > 0 )
		{
			document.writeln( '<table border="0" cellpadding="0" cellspacing="0" bgcolor="' + this.borderColor + '">' );
			document.writeln( '	<tr>' );
			document.writeln( '		<td>' );
			document.writeln( '			<table border="0" cellpadding="0" cellspacing="1">' );
			document.writeln( '				<tr>' );
			document.writeln( '					<td>' );
			document.writeln( '						<table border="0" cellpadding="2" cellspacing="0">' );
			
		
			
			for( var i=0; i<this.entryCnt; i++ )
			{
				document.writeln( '						<tr>' );
				if( IE4 || NS6 )
					document.writeln( '							<td bgcolor="' + this.bgColor + '"><a class="menuentry" id="m'+this.nr+'td'+i+'"  href="' + this.entries[i].url + '" target="' + this.entries[i].target + '" class="menuentry" onMouseOver="menu.hilightEntry( ' + this.nr + ', ' + i + ' );" onMouseOut="menu.lowerEntry( ' + this.nr + ', ' + i + ' );"><span style="color:'+this.txtColor+'">' + this.entries[i].text + '</span></a></td>' );
				else
					document.writeln( '							<td bgcolor="' + this.bgColor + '"><a href="' + this.entries[i].url + '" target="' + this.entries[i].target + '" onMouseOver="menu.hilightEntry( ' + this.nr + ', ' + i + ' );" onMouseOut="menu.lowerEntry( ' + this.nr + ', ' + i + ' );" class="menuentry"><font color="'+this.txtColor+'">' + this.entries[i].text + '</font></a></td>' );
				document.writeln( '						</tr>' );
			}
			
	
			document.writeln( '						</table>' );
			document.writeln( '					</td>' );
			document.writeln( '				</tr>' );
			document.writeln( '			</table>' );
			document.writeln( '		</td>' );
			document.writeln( '	</tr>' );
			document.writeln( '</table>' );
		}
			
		document.writeln( endtag );
	}		

	function	menuEntry( text, url, target )
	{
		if( !target )
			target	=	"_self";

		if( !url )
			url		=	"#";

		this.text	=	text;
		this.url	=	url;
		this.target	=	target;
	}
	
	
/**
*	Useful functions for all classes
*
*/
	function	setId( id )
	{
		this.id	=	id;
	}

	function	setBorderColor( color )
	{
		this.borderColor		=	color;
	}
	
	function	setBgColors( color, colorhi )
	{
		this.bgColor		=	color;
		this.bgColorHi		=	colorhi;
	}
	
	function	setTxtColors( color, colorhi )
	{
		this.txtColor		=	color;
		this.txtColorHi		=	colorhi;
	}
	
	function	setDepth( depth )
	{
		this.depth	=	depth;
	}
	
	function	setRefEntry( id )
	{
		this.refEntry	=	id;
	}
	
	if( NS4 )
	{
		var	starttag		=	'<layer visibility="hide" name=';
		var	endtag			=	'</layer>';
	}
	else
	{
		var	starttag		=	'<div id=';
		var	endtag			=	'</div>';
	}

	var	items		=	new Array();


	var	menu		=	new	dhtmlMenu();
	menu.setDepth( 100 );


// 	Resize abfangen
	if (!window.saveInnerWidth) 
	{
		window.onresize = resizeIt;
		window.saveInnerWidth = window.innerWidth;
		window.saveInnerHeight = window.innerHeight;
	}
	
	
	//	Reload anstossen bei Netscape 4 nach resize
	function 	resizeIt()
	{
		if (saveInnerWidth < window.innerWidth ||
			saveInnerWidth > window.innerWidth ||
			saveInnerHeight > window.innerHeight ||
			saveInnerHeight < window.innerHeight )
			{
				window.history.go(0);
			}
	}
	
// menuepunkt + untermenuepunkte

items[1] = new ddMenu( 0, 0 );
items[1].setBorderColor( '#FFCC00' );
items[1].setBgColors( '#F8EABF', '#FFCC00' );
items[1].setTxtColors( '#000000', '#ffffff' );
items[1].addEntry( "Architekten und Ingenieure&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/bauplanung/architekten/index.html", '_self' );
items[1].addEntry( "Grundst&uuml;ck&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/bauplanung/grundstueck/index.html", '_self' );
items[1].addEntry( "Massivhaus&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/bauplanung/massivhaus/index.html", '_self' );
items[1].addEntry( "Fertighaus&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/bauplanung/fertighaus/index.html", '_self' );
items[1].addEntry( "Umbau und Sanierung&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/bauplanung/umbau/index.html", '_self' );
items[1].addEntry( "&Ouml;kologisches Bauen und Wohnen", "/start.php?file=/bauplanung/oekologisches/index.html", '_self' );
items[1].addEntry( "Energiesparen und W&auml;rmeschutz", "/start.php?file=/bauplanung/energiesparen/index.html", '_self' );
items[1].addEntry( "Umzug und Einzug&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/bauplanung/umzug/index.html", '_self' );


items[2] = new ddMenu( 0, 0 );
items[2].setBorderColor( '#FF8A00' );
items[2].setBgColors( '#F9DDBE', '#FF8A00' );
items[2].setTxtColors( '#000000', '#ffffff' );
items[2].addEntry( "Fundamente&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/rohbau/fundamente/index.html", '_self' );
items[2].addEntry( "Keller&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/rohbau/keller/index.html", '_self' );
items[2].addEntry( "W&auml;nde&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/rohbau/waende/index.html", '_self' );
items[2].addEntry( "Decken&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/rohbau/decken/index.html", '_self' );
items[2].addEntry( "Treppen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/rohbau/treppen/index.html", '_self' );
items[2].addEntry( "D&auml;cher&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/rohbau/daecher/index.html", '_self' );
items[2].addEntry( "Fassaden&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/rohbau/fassaden/index.html", '_self' );
items[2].addEntry( "Fenster und T&uuml;ren", "/start.php?file=/rohbau/fenster/index.html", '_self' );
items[2].addEntry( "Estriche&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/rohbau/estriche/index.html", '_self' );


items[3] = new ddMenu( 0, 0 );
items[3].setBorderColor( '#8D0000' );
items[3].setBgColors( '#EDC7C5', '#8D0000' );
items[3].setTxtColors( '#000000', '#ffffff' );
items[3].addEntry( "Heizung&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/haustechnik/heizung/index.html", '_self' );
items[3].addEntry( "Wasser und Abwasser (Sanit&auml;r)", "/start.php?file=/haustechnik/wasser/index.html", '_self' );
items[3].addEntry( "Kamine und Kachel&ouml;fen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/haustechnik/kamine/index.html", '_self' );
items[3].addEntry( "Elektroinstallation&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/haustechnik/elektroinstallation/index.html", '_self' );
items[3].addEntry( "Telekommunikation&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/haustechnik/telekommunikation/index.html", '_self' );
items[3].addEntry( "Einbruchschutz&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/haustechnik/einbruchschutz/index.html", '_self' );
items[3].addEntry( "Sonnenschutz&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/haustechnik/sonnenschutz/index.html", '_self' );
items[3].addEntry( "Solaranlagen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/haustechnik/solaranlagen/index.html", '_self' );


items[4] = new ddMenu( 0, 0 );
items[4].setBorderColor( '#CC0066' );
items[4].setBgColors( '#ECCAD6', '#CC0066' );
items[4].setTxtColors( '#000000', '#ffffff' );
items[4].addEntry( "Sanit&auml;rgegenst&auml;nde", "/start.php?file=/innenausbau/sanitaergegenstaende/index.html", '_self' );
items[4].addEntry( "Innent&uuml;ren&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/innenausbau/innentueren/index.html", '_self' );
items[4].addEntry( "Bodenbel&auml;ge&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/innenausbau/bodenbelaege/index.html", '_self' );
items[4].addEntry( "Wandgestaltung&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/innenausbau/wandgestaltung/index.html", '_self' );
items[4].addEntry( "Trennw&auml;nde&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/innenausbau/trennwaende/index.html", '_self' );
items[4].addEntry( "Deckengestaltung&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/innenausbau/deckengestaltung/index.html", '_self' );


items[5] = new ddMenu( 0, 0 );
items[5].setBorderColor( '#993499' );
items[5].setBgColors( '#DED0E6', '#993499' );
items[5].setTxtColors( '#000000', '#ffffff' );
items[5].addEntry( "K&uuml;che&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/einrichtung/kueche/index.html", '_self' );
items[5].addEntry( "Esszimmer&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/einrichtung/esszimmer/index.html", '_self' );
items[5].addEntry( "Wohnzimmer&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/einrichtung/wohnzimmer/index.html", '_self' );
items[5].addEntry( "Schlafzimmer&nbsp;&nbsp;&nbsp;", "/start.php?file=/einrichtung/schlafzimmer/index.html", '_self' );
items[5].addEntry( "Kinderzimmer&nbsp;&nbsp;&nbsp;", "/start.php?file=/einrichtung/kinderzimmer/index.html", '_self' );
items[5].addEntry( "Arbeitszimmer&nbsp;&nbsp;", "/start.php?file=/einrichtung/arbeitszimmer/index.html", '_self' );
items[5].addEntry( "Flur- Garderobe", "/start.php?file=/einrichtung/flur/index.html", '_self' );
items[5].addEntry( "Beleuchtungen&nbsp;&nbsp;", "/start.php?file=/einrichtung/beleuchtungen/index.html", '_self' );


items[6] = new ddMenu( 0, 0 );
items[6].setBorderColor( '#5B32AD' );
items[6].setBgColors( '#CCCFEA', '#5B32AD' );
items[6].setTxtColors( '#000000', '#ffffff' );
items[6].addEntry( "Tipps&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/wohnen/tipps/index.html", '_self' );
items[6].addEntry( "Gestaltungsideen", "/start.php?file=/wohnen/gestaltungsideen/index.html", '_self' );
items[6].addEntry( "Accessoires&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/wohnen/accessoires/index.html", '_self' );


items[7] = new ddMenu( 0, 0 );
items[7].setBorderColor( '#3399FF' );
items[7].setBgColors( '#C6E1F1', '#3399FF' );
items[7].setTxtColors( '#000000', '#ffffff' );
items[7].addEntry( "Au&szlig;enbeleuchtung", "/start.php?file=/aussenanlagen/aussenbeleuchtung/index.html", '_self' );
items[7].addEntry( "Gartenanlage&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/aussenanlagen/gartenanlage/index.html", '_self' );
items[7].addEntry( "Zufahrten und Wege&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/aussenanlagen/zufahrten/index.html", '_self' );
items[7].addEntry( "Z&auml;une und Mauern&nbsp;", "/start.php?file=/aussenanlagen/zaeune/index.html", '_self' );
items[7].addEntry( "Terrassen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/aussenanlagen/terrassen/index.html", '_self' );
items[7].addEntry( "Garage und Carport&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/aussenanlagen/garage/index.html", '_self' );
items[7].addEntry( "Gartenm&ouml;bel&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/start.php?file=/aussenanlagen/gartenmoebel/index.html", '_self' );


items[8] = new ddMenu( 0, 0 );
items[8].setBorderColor( '#009999' );
items[8].setBgColors( '#CDECEC', '#009999' );
items[8].setTxtColors( '#000000', '#ffffff' );


items[9] = new ddMenu( 0, 0 );
items[9].setBorderColor( '#006633' );
items[9].setBgColors( '#C8EFDC', '#006633' );
items[9].setTxtColors( '#000000', '#ffffff' );


items[10] = new ddMenu( 0, 0 );
items[10].setBorderColor( '#66CC00' );
items[10].setBgColors( '#DFE9CD', '#66CC00' );
items[10].setTxtColors( '#000000', '#ffffff' );



menu.addChild( items[1] );
menu.addChild( items[2] );
menu.addChild( items[3] );
menu.addChild( items[4] );
menu.addChild( items[5] );
menu.addChild( items[6] );
menu.addChild( items[7] );
menu.addChild( items[8] );
menu.addChild( items[9] );
menu.addChild( items[10] );