function hilightOn(menuid) {

			flyoutsOff();

			color = "#C87A09";
			if (document.all) { //IS IE 4 or 5 (or 6 beta)
				eval( "document.all." + menuid + ".style.backgroundColor = color" );
			}

			if (document.layers) { //IS NETSCAPE 4 or below
				document.layers[menuid].backgroundColor = color;
			}

			if (document.getElementById &&!document.all) {
				hza = document.getElementById(menuid);
				hza.style.backgroundColor = color;
			}
		}
		function flyoutOn(menuid) {

			flyoutsOff();

			color = "#C87A09";
			if (document.all) { //IS IE 4 or 5 (or 6 beta)
				eval( "document.all." + menuid + ".style.backgroundColor = color" );
				eval( "document.all." + menuid + "flyout.style.visibility = 'visible'" );
			}

			if (document.layers) { //IS NETSCAPE 4 or below
				document.layers[menuid].backgroundColor = color;
				document.layers[menuid+"flyout"].visibility = "visible";
			}

			if (document.getElementById &&!document.all) {
				hza = document.getElementById(menuid);
				hza.style.backgroundColor = color;
				fo = document.getElementById( menuid + "flyout" );
				fo.style.visibility = "visible";
			}
		}
		function flyoutsOff() {
			color = "#C87A09";
			var menuitem = new Array(5);
			menuitem[0] = "QualityofLife";
			menuitem[1] = "GlobalInitiatives";
			menuitem[2] = "CurrentPartnerships";
			menuitem[3] = "ProductsinAction";
			menuitem[4] = "EducationandResources";
			
			var x=0;
			for( x=0; x<5; x++ )
			{
				if (document.all) { //IS IE 4 or 5 (or 6 beta)
					eval( "document.all." + menuitem[x] + ".style.backgroundColor = color" );
					eval( "document.all." + menuitem[x] + "flyout.style.visibility = 'hidden'" );
				}

				if (document.layers) { //IS NETSCAPE 4 or below
					document.layers[menuitem[x]].backgroundColor = color;
					document.layers[menuitem[x]+"flyout"].visibility = "hidden";
				}

				if (document.getElementById &&!document.all) {
					hza = document.getElementById(menuitem[x]);
					hza.style.backgroundColor = color;
					fo = document.getElementById( menuitem[x] + "flyout" );
					fo.style.visibility = "hidden";
				}
			}
		}
		
		var state = 'none';
		arrowclosed = new Image(10,10);
		arrowclosed.src = "/shared_graphics/pfeil_hoch.gif";
		arrowopen = new Image(10,10);
		arrowopen.src = "/shared_graphics/f2_pfeil_aktuell.gif";

		function showCat(layer_ref) {
			if (state == 'block') {
				state = 'none';
				newarrow = arrowclosed.src;
			} else {
				state = 'block';
				newarrow = arrowopen.src;
			}

			if (document.all) { //IS IE 4 or 5 (or 6 beta)
				eval( "document.all." + layer_ref + ".style.display = state" );
				eval( "document.all." + layer_ref + "arrow.src = newarrow" );
			}

			if (document.layers) { //IS NETSCAPE 4 or below
				document.layers[layer_ref].display = state;
				document.layers[layer_ref+"arrow"].src = newarrow;
			}

			if (document.getElementById &&!document.all) {
				hza = document.getElementById(layer_ref);
				hza.style.display = state;
				arrowimg = document.getElementById( layer_ref + "arrow" );
				arrowimg.src = newarrow;
			}
		}