function writeImageData (imgarray) {
// schreibt die bilddaten aus dem array
// nur eine schreiberleichterung
	return 'width="'+imgarray['width']+'" height="'+imgarray['height']+'"';
}


function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

var preloadFlag = false;
function preloadImages(navigation) {
// laedt die mouseover vor

	if (document.images) {

		for (var i=1; i<navigation.length; i++){
			if (navigation[i].length) {
				for (var j=1; j<navigation[i].length; j++) {
					if (navigation[i][j].length) {
						for (var n=1; n<navigation[i][j].length; n++) {
							eval('pre_image_'+i+'_'+j+'_'+n+' = newImage("/melitta-site/shared/navigation/0'+i+'0'+j+'0'+n+'-over.gif");');
						}
					}
				}
			}
		}

		preloadFlag = true;
	}
}



function changeImages() {

// tauscht bilder aus
// verlangt ein bis x tupel, wobei der erste wert der name des img-tags ist und der zweite der name des neuen bildes
// z.B. changeImages(tagname1,bildname1,tagname2,bildname2);

	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = '/melitta-site/shared/navigation/'+changeImages.arguments[i+1];
		}
	}
}



function createNavigation(nav_tree,leaf) {

// erstellt das navigation-array mit der struktur von "nav_tree" und "leaf" als blätter

	var navigation = new Array();

	for (var i=1;i<nav_tree.length;i++) {
		if (nav_tree[i].length) {
			navigation[i] = new Array();
			navigation[i] = createNavigation(nav_tree[i],leaf);
			navigation[i][0] = new Array();
			for (key in leaf) {
				navigation[i][0][key] = leaf[key];
			}
		}else{
			navigation[i] = new Array();
			for (var j=0;j<=nav_tree[i];j++) {
				navigation[i][j] = new Array();
				for (key in leaf) {
					navigation[i][j][key] = leaf[key];
				}
			}
		}
	}

	return navigation

}


function printNavigation(navigation) {

// kleine Hilfsfunktion zur ansicht des "navigation	"-arrays

	for (var i=1;i<navigation.length;i++) {
		if (navigation[i].length) {
			document.write("<table><tr><td>"+i+"</td></tr><tr><td><table><tr>");
			printNavigation(navigation[i]);
			document.write("</tr></table></td></tr></table>");
		} else {
			document.write("<td>"+i+" | </td>");
		}
	}

	return

}



function writeNavigation(active) {

// schreibt die linke Navigation
// "active" ist ein String der Form "haupt,sub1,sub2"
// haupt, sub1 und sub2 gibt die position des aktiven menüpunktes an
// z.B. "2,3" oder "1,2,1" oder "4" oder ""

// ruft writeNavigationLevel2() auf


	var activePoint = active.split(",");

	document.write('<table width="182" border="0" cellspacing="0" cellpadding="0">\n');
	document.write('<tr><td width="182" height="2"><img src="/melitta-site/shared/s.gif" width="182" height="2" border="0"></td></tr>\n');


	for (var i=1;i<navigation.length;i++) {
		document.write('<tr><td width="182" height="5"><img src="/melitta-site/shared/s.gif" width="182" height="5" border="0"></td></tr>\n');
		document.write('<tr>\n');


		document.write('<td width="182">');
		if (i != activePoint[0]) {
			document.write('<a href="'+navigation[i][0]['url']+'">');
			document.write('<img src="/melitta-site/shared/navigation/'+navigation[i][0]['img']+'.gif" border="0" '+writeImageData(navigation[i][0])+'>');
			document.write('</a>');
		} else {
			if (activePoint.length > 1) {document.write('<a href="'+navigation[i][0]['url']+'">');}
			document.write('<img src="/melitta-site/shared/navigation/'+navigation[i][0]['img']+'-active.gif" border="0" '+writeImageData(navigation[i][0])+'>');
		}
		document.write('</td>\n');


		document.write('</tr>\n');

		if (i == activePoint[0]) {writeNavigationLevel2(activePoint);}

		document.write('<tr><td width="182" height="4"><img src="/melitta-site/shared/s.gif" width="182" height="4" border="0"></td></tr>\n');

	}

	document.write('<tr><td width="182" height="3"><img src="/melitta-site/shared/s.gif" width="182" height="3" border="0"></td></tr>\n');

	document.write('</table>\n');


}


function writeNavigationLevel2(activePoint) {

// hilfsfunktion von writeNavigation()
// schreibt die das zweite level (sub1) der linken navigation

// ruft writeNavigationLevel3() auf

	if (activePoint.length>1) {var activePointLevel2=activePoint[1];}else{var activePointLevel2=0;}



	if (navigation[activePoint[0]].length > 1) {

		document.write('<tr><td width="182" height="5"><img src="/melitta-site/shared/s.gif" width="182" height="5" border="0"></td></tr>\n');

		document.write('<tr>\n');
		document.write('<td width="182" height="1" class="gray"><img src="/melitta-site/shared/s.gif" width="182" height="1" border="0"></td>');
		document.write('</tr>');

	}



	for (var i=1;i<navigation[activePoint[0]].length;i++) {


		document.write('<tr>\n');
		document.write('<td width="182">');

		if (i == activePointLevel2) {
			if (activePoint.length > 2) {
				document.write('<a href="');

				if (navigation[activePoint[0]][i].length) {
					if ( navigation[activePoint[0]][i][0]["url"] =="#" ) {
						document.write("/cms/unternehmendb/index.php?T_ID="+i);
					} else {
					document.write(navigation[activePoint[0]][i][0]["url"]);
					}
				} else {
					document.write(navigation[activePoint[0]][i]["url"]);
				}



				document.write('">');
			}
			if (navigation[activePoint[0]][i].length) {
				document.write('<img src="/melitta-site/shared/navigation/'+navigation[activePoint[0]][i][0]['img']+'-active.gif" border="0" '+writeImageData(navigation[activePoint[0]][i][0])+'>');
			}else{
				document.write('<img src="/melitta-site/shared/navigation/'+navigation[activePoint[0]][i]['img']+'-active.gif" border="0" '+writeImageData(navigation[activePoint[0]][i])+'>');
			}
		}else{
			document.write('<a href="');

			if (navigation[activePoint[0]][i].length) {
					if ( navigation[activePoint[0]][i][0]["url"] =="#" ) {
						document.write("/cms/unternehmendb/index.php?T_ID="+i);
					} else {

						document.write(navigation[activePoint[0]][i][0]["url"]);
					}
			} else {
				document.write(navigation[activePoint[0]][i]["url"]);
			}

			document.write('">');


			if (navigation[activePoint[0]][i].length) {
				document.write('<img src="/melitta-site/shared/navigation/'+navigation[activePoint[0]][i][0]['img']+'.gif" border="0" '+writeImageData(navigation[activePoint[0]][i][0])+'>');
			} else {
				document.write('<img src="/melitta-site/shared/navigation/'+navigation[activePoint[0]][i]['img']+'.gif" border="0" '+writeImageData(navigation[activePoint[0]][i])+'>');
			}
		}
		if ((i != activePointLevel2) || (activePoint.length > 2)) {
			document.write('</a>');
		}

		document.write('</td>');
		document.write('</tr>');



		if ((i == activePointLevel2)  && (navigation[activePoint[0]][i].length > 1)) {

			document.write('<tr>\n');
			document.write('<td width="182" height="1"><table width="182" height="1" border="0" cellspacing="0" cellpadding="0"><tr><td width="4" height="1"><img src="/melitta-site/shared/s.gif" width="4" height="1" border="0"></td>\n');
			document.write('<td width="14" height="1"><img src="/melitta-site/shared/s.gif" width="14" height="1" border="0"></td>\n');
			document.write('<td width="6" height="1" class="gray"><img src="/melitta-site/shared/s.gif" width="6" height="1" border="0"></td>\n');
			document.write('<td width="158" height="1" class="gray"><img src="/melitta-site/shared/s.gif" width="158" height="1" border="0"></td>');
			document.write('</tr></table></td></tr>\n');


			writeNavigationLevel3(activePoint);


		}

		if ((activePoint[0] != navigation.length-1) || (i != navigation[activePoint[0]].length-1)) {



			document.write('<tr>\n');
			document.write('<td width="182" height="1"><table width="182" height="1" border="0" cellspacing="0" cellpadding="0"><tr><td width="4" height="1"');


			if (i == navigation[activePoint[0]].length-1) {document.write(' class="gray"');}

			document.write('><img src="/melitta-site/shared/s.gif" width="4" height="1" border="0"></td>\n');
			document.write('<td width="14" height="1"');


			if (i == navigation[activePoint[0]].length-1) {document.write(' class="gray"');}

			document.write('><img src="/melitta-site/shared/s.gif" width="14" height="1" border="0"></td>\n');
			document.write('<td width="6" height="1" class="gray"><img src="/melitta-site/shared/s.gif" width="6" height="1" border="0"></td>\n');
			document.write('<td width="158" height="1" class="gray"><img src="/melitta-site/shared/s.gif" width="158" height="1" border="0"></td>');
			document.write('</tr></table></td></tr>');

		}
	}


}



function writeNavigationLevel3 (activePoint) {

// hilfsfunktion von writeNavigationLevel2()
// schreibt des zweite level (sub2) der linken navigation


	if (activePoint.length>2) {var activePointLevel3=activePoint[2];}else{var activePointLevel3=0;}


	for (var i=1;i<navigation[activePoint[0]][activePoint[1]].length;i++) {

		document.write('<tr>\n');
		document.write('<td width="182">');

		if (activePointLevel3 == i) {
			document.write('<img src="/melitta-site/shared/navigation/'+navigation[activePoint[0]][activePoint[1]][i]['img']+'-active.gif" border="0" '+writeImageData(navigation[activePoint[0]][activePoint[1]][i])+'>');
		}else{

			if ( navigation[activePoint[0]][activePoint[1]][i]["url"] =="#" ) {
				 navigation[activePoint[0]][activePoint[1]][i]["url"] = "/tesfall/cms/unternehmendb/index.php?T_ID="+activePoint[1]+"&S_ID="+i;
			}
			document.write('<a href="'+navigation[activePoint[0]][activePoint[1]][i]["url"]+'" onMouseOver="changeImages(\'navimage'+i+'\',\'0'+activePoint[0]+'0'+activePoint[1]+'0'+i+'-over.gif\');" onMouseOut="changeImages(\'navimage'+i+'\',\'0'+activePoint[0]+'0'+activePoint[1]+'0'+i+'.gif\');">');
			document.write('<img src="/melitta-site/shared/navigation/'+navigation[activePoint[0]][activePoint[1]][i]['img']+'.gif" border="0" name="navimage'+i+'" '+writeImageData(navigation[activePoint[0]][activePoint[1]][i])+'>');
		}

		if (activePointLevel3 != i) {document.write('</a>');}

		document.write('</td>\n');
		document.write('</tr>\n');

	}


}







//
// start der definition der linken navigation
//



var navigation_leaf = new Array();  // feld mit der Blattstruktur von "navigation"

navigation_leaf['img'] = "01";
navigation_leaf['url'] = "#";
navigation_leaf['width'] = "182";
navigation_leaf['height'] = "18";

var navigation_tree = new Array(); // feld für die erstellung von "navigation", enthält die baumstruktur





navigation_tree[1] = new Array();
navigation_tree[1][1] = 0;
navigation_tree[1][2] = 0;
navigation_tree[1][3] = 3;

navigation_tree[2] = new Array();
navigation_tree[2][1] = 1;
navigation_tree[2][2] = 7;
navigation_tree[2][3] = 0;
navigation_tree[2][4] = 4;
navigation_tree[2][5] = 3;
navigation_tree[2][6] = 0;

navigation_tree[3] = 3;

navigation_tree[4] = 0;

navigation_tree[5] = 1;

navigation_tree[6] = 3;

navigation_tree[7] = 0;




var navigation = createNavigation(navigation_tree,navigation_leaf); // "navigation" hat jetzt die struktur der navigation



// jetzt muß "navigation" noch mit inhalt gefüllt werden. den jeweiligen hauptpunkt eines unterpunktes findet man an der stelle [0] des unterpunktes
// z.B. "mellita entdecken" findet man bei navigation[1][0]
// in "img" landet der name des bildes ohne endung

// bilder muessen in "shared/navigation" liegen und gifs sein
// aktive bilder erhalten den zusatz "-active" beim namen und mouse-over-bilder erhalten "-over"
// z.B. "01.gif" und "01-active.gif" und "01-over.gif"


// (c) FISCHERCGD 2005
// edited by David Kügler

navigation[2][5][0]['url'] = "/cms/unternehmendb/sponsoring.php";
navigation[2][6][0]['url'] = "/cms/unternehmendb/index.php?T_ID=5";

navigation[2][5][1]['url'] = "/cms/unternehmendb/sponsoring.php?site=show/0";
navigation[2][5][2]['url'] = "/cms/unternehmendb/sponsoring.php?site=show/1";
navigation[2][5][3]['url'] = "/cms/unternehmendb/sponsoring.php?site=show/2";

navigation[2][6][0]['img'] = "0206";

navigation[2][5][1]['height'] = "16";
navigation[2][5][2]['height'] = "16";
navigation[2][5][3]['height'] = "16";

navigation[2][5][1]['img'] = "020501";
navigation[2][5][2]['img'] = "020502";
navigation[2][5][3]['img'] = "020503";

// Ende edit David Kügler

// erstes level
navigation[1][0]['img'] = "01";
navigation[1][0]['url'] = "/cms/melitta_entdecken/melitta_entdecken.html";
navigation[1][0]['height'] = "9";
navigation[2][0]['img'] = "02";
navigation[2][0]['url'] = "/cms/unternehmen/unternehmen.html";
navigation[2][0]['height'] = "9";
navigation[3][0]['img'] = "03";
navigation[3][0]['url'] = "/cms/international/international.html";
navigation[3][0]['height'] = "9";
navigation[4][0]['img'] = "05";
navigation[4][0]['url'] = "/cms/presse/pressedb/index.php";
navigation[4][0]['height'] = "9";
navigation[5][0]['img'] = "06";
navigation[5][0]['url'] = "/cms/events/index.php";
navigation[5][0]['height'] = "9";
navigation[6][0]['img'] = "04";
navigation[6][0]['url'] = "/cms/karriere/karriere.html";
navigation[6][0]['height'] = "9";
navigation[7][0]['img'] = "07";
navigation[7][0]['url'] = "/melitta-site/meta/m2_kontakt.html";
navigation[7][0]['height'] = "9";



// zweites level

navigation[1][1][0]['img'] = "0101";
navigation[1][1][0]['url'] = "/cms/melitta_entdecken/01_zeitreise/01_meilenstein.html";
navigation[1][2][0]['img'] = "0102";
navigation[1][2][0]['url'] = "/cms/melitta_entdecken/02_wussten_sie_schon/wussten_sie_schon.html";
navigation[1][3][0]['img'] = "0103";
navigation[1][3][0]['url'] = "/cms/melitta_entdecken/03_sammlerboerse/sammlerboerse.html";

navigation[2][1][0]['img'] = "0201";
//navigation[2][1][0]['url'] = "/cms/unternehmen/01_ueberblick/ueberblick.php";
navigation[2][2][0]['img'] = "0202";
//navigation[2][2][0]['url'] = "/cms/unternehmen/02_unternehmensbereiche/unternehmensbereiche.php";
navigation[2][3][0]['img'] = "0203";
//navigation[2][3][0]['url'] = "/cms/unternehmen/03_marken/marken.php";
navigation[2][4][0]['img'] = "0204";
//navigation[2][4][0]['url'] = "/cms/unternehmen/04_grundsaetze/01_geschaeftspolitik.php";
navigation[2][5][0]['img'] = "0205";
//navigation[2][5][0]['url'] = "/cms/unternehmen/05_downloads/downloads.html";

navigation[3][1]['img'] = "0301";
navigation[3][1]['url'] = "/cms/international/01_brasilien/brasilien.html";
navigation[3][1]['height'] = "19";
navigation[3][2]['img'] = "0302";
navigation[3][2]['url'] = "/cms/international/02_adressen/adressen.html";
navigation[3][3]['img'] = "0303";
navigation[3][3]['url'] = "/cms/international/03_linkliste/linkliste.html";

navigation[5][1]['img'] = "0501";
navigation[5][1]['url'] = "/cms/presse/bilddb/index.php";

navigation[6][1]['img'] = "0401";
navigation[6][1]['url'] = "/cms/karriere/01_national/national.html";
navigation[6][1]['height'] = "19";
navigation[6][2]['img'] = "0402";
navigation[6][2]['url'] = "/cms/karriere/02_international/international.html";
navigation[6][3]['img'] = "0403";
navigation[6][3]['url'] = "/cms/karriere/03_kontakt/kontakt.html";
navigation[6][3]['height'] = "13";




// drittes level
navigation[1][3][1]['img'] = "010301";
navigation[1][3][1]['url'] = "/cms/melitta_entdecken/03_sammlerboerse/01_focus_artikel.php";
navigation[1][3][1]['height'] = "16";
navigation[1][3][2]['img'] = "010302";
navigation[1][3][2]['url'] = "/cms/melitta_entdecken/03_sammlerboerse/biete/view.php";
navigation[1][3][2]['height'] = "15";
navigation[1][3][3]['img'] = "010303";
navigation[1][3][3]['url'] = "/cms/melitta_entdecken/03_sammlerboerse/suche/view.php";

navigation[2][1][1]['img'] = "020101";
//navigation[2][1][1]['url'] = "/cms/02_unternehmen/01_ueberblick/01_beratung_verwaltung.php";
navigation[2][1][1]['height'] = "26";

navigation[2][2][1]['img'] = "020201";
//navigation[2][2][1]['url'] = "/cms/unternehmen/02_unternehmensbereiche/01_haushaltsprodukte_europa.php";
navigation[2][2][1]['height'] = "27";
navigation[2][2][2]['img'] = "020202";
//navigation[2][2][2]['url'] = "/cms/unternehmen/02_unternehmensbereiche/02_cofresco.php";
navigation[2][2][2]['height'] = "27";
navigation[2][2][3]['img'] = "020203";
//navigation[2][2][3]['url'] = "/cms/unternehmen/02_unternehmensbereiche/03_kaffee_europa.php";
navigation[2][2][3]['height'] = "15";
navigation[2][2][4]['img'] = "020204";
//navigation[2][2][4]['url'] = "/cms/unternehmen/02_unternehmensbereiche/04_system_service.php";
navigation[2][2][4]['height'] = "15";
navigation[2][2][5]['img'] = "020205";
//navigation[2][2][5]['url'] = "/cms/unternehmen/02_unternehmensbereiche/05_usa_kanada.php";
navigation[2][2][5]['height'] = "15";
navigation[2][2][6]['img'] = "020206";
//navigation[2][2][6]['url'] = "/cms/unternehmen/02_unternehmensbereiche/06_brasil.php";
navigation[2][2][6]['height'] = "15";
navigation[2][2][7]['img'] = "020207";
//navigation[2][2][7]['url'] = "/cms/unternehmen/02_unternehmensbereiche/07_industriegruppe.php";
navigation[2][2][7]['height'] = "27";
//navigation[2][2][8]['img'] = "020208";
//navigation[2][2][8]['url'] = "/cms/unternehmen/02_unternehmensbereiche/08_beteiligungen.php";
//navigation[2][2][8]['height'] = "15";

//navigation[2][2][9]['img'] = "020209";

navigation[2][4][1]['img'] = "020401";
//navigation[2][4][1]['url'] = "/melitta-site/02_unternehmen/04_grundsaetze/01_geschaeftspolitik.php";
navigation[2][4][1]['height'] = "16";
navigation[2][4][2]['img'] = "020402";
//navigation[2][4][2]['url'] = "/melitta-site/02_unternehmen/04_grundsaetze/02_fuehrung.php";
navigation[2][4][2]['height'] = "15";
navigation[2][4][3]['img'] = "020403";
//navigation[2][4][3]['url'] = "/melitta-site/02_unternehmen/04_grundsaetze/03_markenstrategie.php";
navigation[2][4][3]['height'] = "15";
navigation[2][4][4]['img'] = "020404";
//navigation[2][4][4]['url'] = "/melitta-site/02_unternehmen/04_grundsaetze/04_umwelt.php";



/*// erstes level

navigation[1][0]['img'] = "01";
navigation[1][0]['url'] = "/melitta-site/01_melitta_entdecken/melitta_entdecken.html";
navigation[1][0]['height'] = "9";
navigation[2][0]['img'] = "02";
navigation[2][0]['url'] = "/melitta-site/02_unternehmen/unternehmen.html";
navigation[2][0]['height'] = "9";
navigation[3][0]['img'] = "03";
navigation[3][0]['url'] = "/melitta-site/03_international/international.html";
navigation[3][0]['height'] = "9";
navigation[4][0]['img'] = "05";
navigation[4][0]['url'] = "/melitta-site/05_presse/presse.html";
navigation[4][0]['height'] = "9";
navigation[5][0]['img'] = "06";
navigation[5][0]['url'] = "/melitta-site/06_events/events.php";
navigation[5][0]['height'] = "9";
navigation[6][0]['img'] = "04";
navigation[6][0]['url'] = "/melitta-site/04_karriere/karriere.html";
navigation[6][0]['height'] = "9";



// zweites level

navigation[1][1][0]['img'] = "0101";
navigation[1][1][0]['url'] = "/melitta-site/01_melitta_entdecken/01_zeitreise/01_meilenstein.html";
navigation[1][2][0]['img'] = "0102";
navigation[1][2][0]['url'] = "/melitta-site/01_melitta_entdecken/02_wussten_sie_schon/wussten_sie_schon.html";
navigation[1][3][0]['img'] = "0103";
navigation[1][3][0]['url'] = "/melitta-site/01_melitta_entdecken/03_sammlerboerse/sammlerboerse.html";

//Uebersicht
navigation[2][1][0]['img'] = "0201";
//navigation[2][1][0]['url'] = "http://www.melitta.info/neues-cms/index.php?T_ID=1";

// Unternehmen
navigation[2][2][0]['img'] = "0202";
//navigation[2][2][0]['url'] = "http://www.melitta.info/neues-cms/index.php?T_ID=2";
navigation[2][3][0]['img'] = "0203";
//navigation[2][3][0]['url'] = "/melitta-site/02_unternehmen/03_marken/marken.php";
navigation[2][4][0]['img'] = "0204";
//navigation[2][4][0]['url'] = "/melitta-site/02_unternehmen/04_grundsaetze/01_geschaeftspolitik.php";
navigation[2][5][0]['img'] = "0205";
//navigation[2][5][0]['url'] = "/melitta-site/02_unternehmen/05_downloads/downloads.html";

navigation[3][1]['img'] = "0301";
navigation[3][1]['url'] = "/melitta-site/03_international/01_brasilien/brasilien.html";
navigation[3][1]['height'] = "19";
navigation[3][2]['img'] = "0302";
navigation[3][2]['url'] = "/melitta-site/03_international/02_adressen/adressen.html";
navigation[3][3]['img'] = "0303";
navigation[3][3]['url'] = "/melitta-site/03_international/03_linkliste/linkliste.html";

navigation[6][1]['img'] = "0401";
navigation[6][1]['url'] = "/melitta-site/04_karriere/jobs_liste.php?art=national";
navigation[6][1]['height'] = "19";
navigation[6][2]['img'] = "0402";
navigation[6][2]['url'] = "/melitta-site/04_karriere/jobs_liste.php?art=international";
navigation[6][3]['img'] = "0403";
navigation[6][3]['url'] = "/melitta-site/04_karriere/03_kontakt/kontakt.html";
navigation[6][3]['height'] = "13";




// drittes level
navigation[1][3][1]['img'] = "010301";
navigation[1][3][1]['url'] = "/melitta-site/01_melitta_entdecken/03_sammlerboerse/01_focus_artikel.php";
navigation[1][3][1]['height'] = "16";
navigation[1][3][2]['img'] = "010302";
navigation[1][3][2]['url'] = "/melitta-site/01_melitta_entdecken/03_sammlerboerse/02_inserat.php?art=angebot";
navigation[1][3][2]['height'] = "15";
navigation[1][3][3]['img'] = "010303";
navigation[1][3][3]['url'] = "/melitta-site/01_melitta_entdecken/03_sammlerboerse/02_inserat.php?art=gesuch";

// Uebersicht
navigation[2][1][1]['img'] = "020101";
//navigation[2][1][1]['url'] = "http://www.melitta.info/neues-cms/index.php?T_ID=1&S_ID=1";
navigation[2][1][1]['height'] = "26";

//haushaltsprodukte europa
navigation[2][2][1]['img'] = "020201";
//navigation[2][2][1]['url'] = "http://www.melitta.info/neues-cms/index.php?T_ID=2&S_ID=1";
navigation[2][2][1]['height'] = "27";

//cofresco
navigation[2][2][2]['img'] = "020202";
//navigation[2][2][2]['url'] = "http://www.melitta.info/neues-cms/index.php?T_ID=2&S_ID=2";
navigation[2][2][2]['height'] = "27";
navigation[2][2][3]['img'] = "020203";
//navigation[2][2][3]['url'] = "http://www.melitta.info/neues-cms/index.php?T_ID=2&S_ID=3";
navigation[2][2][3]['height'] = "15";
navigation[2][2][4]['img'] = "020204";

// systemservice
//navigation[2][2][4]['url'] = "http://www.melitta.info/neues-cms/index.php?T_ID=2&S_ID=4";
navigation[2][2][4]['height'] = "15";
navigation[2][2][5]['img'] = "020205";
//navigation[2][2][5]['url'] = "/melitta-site/02_unternehmen/02_unternehmensbereiche/05_usa_kanada.php";
navigation[2][2][5]['height'] = "15";
navigation[2][2][6]['img'] = "020206";
//navigation[2][2][6]['url'] = "/melitta-site/02_unternehmen/02_unternehmensbereiche/06_brasil.php";
navigation[2][2][6]['height'] = "15";
navigation[2][2][7]['img'] = "020207";
//navigation[2][2][7]['url'] = "/melitta-site/02_unternehmen/02_unternehmensbereiche/07_industriegruppe.php";
navigation[2][2][7]['height'] = "15";
navigation[2][2][8]['img'] = "020208";
//navigation[2][2][8]['url'] = "/melitta-site/02_unternehmen/02_unternehmensbereiche/08_beteiligungen.php";
navigation[2][2][8]['height'] = "15";
navigation[2][2][9]['img'] = "020209";
//navigation[2][2][9]['url'] = "/melitta-site/02_unternehmen/02_unternehmensbereiche/09_geschaeftsprojekte.php";


navigation[2][4][1]['img'] = "020401";
//navigation[2][4][1]['url'] = "/melitta-site/02_unternehmen/04_grundsaetze/01_geschaeftspolitik.php";
navigation[2][4][1]['height'] = "16";
navigation[2][4][2]['img'] = "020402";
//navigation[2][4][2]['url'] = "/melitta-site/02_unternehmen/04_grundsaetze/02_fuehrung.php";
navigation[2][4][2]['height'] = "15";
navigation[2][4][3]['img'] = "020403";
//navigation[2][4][3]['url'] = "/melitta-site/02_unternehmen/04_grundsaetze/03_markenstrategie.php";
navigation[2][4][3]['height'] = "15";
navigation[2][4][4]['img'] = "020404";
//navigation[2][4][4]['url'] = "/melitta-site/02_unternehmen/04_grundsaetze/04_umwelt.php";

*/
preloadImages(navigation); // laedt die MouseOver vor