
	timerMenu = null;
	var Atlatszosag = 0;
	var mostMutat = 0;
	
	var tartalom = new Array();
	tartalom[0] = '<a href="../pajert34/UCbev.html">Bevezető</a>';
	tartalom[1] = '<a href="../pajert34/UCTort.html">Az üzemanyag cellák története</a>';
	tartalom[2] = '<a href="../pajert34/UCMukElv.html">Működési elv</a>';
	tartalom[5] = '<a href="../pajert37/UCFesz.html">Az üzemanyag cella feszültsége</a>';
	tartalom[3] = '<a href="../pajert34/UCSajat.html">Saját üzemanyag cella készítése</a>';
	tartalom[4] = '<a href="../pajert34/UCKiserletek.html">Kísérletek</a>';
	
	var sorrend = new Array();
	sorrend[0] = 0;
	sorrend[1] = 1;
	sorrend[2] = 2;
	sorrend[3] = 5;
	sorrend[4] = 3;
	sorrend[5] = 4;
	
	var akcio1 = '<td class="tds" onMouseOver="clearTimeout(timerMenu);return true;" onMouseOut="rejtsdelaMenut()" style="width:350;text-align:left" width="280">'
	var akcio2 = '<td class="tds" onMouseOver="clearTimeout(timerMenu);return true;" onMouseOut="rejtsdelaMenut()" style="width:350;text-align:left" width="280">'
	var pirosPont = '<img src="../pajert2/piros_kor.gif">';
	var uresPont = '<img src="../pajert/blank.gif" width="19" height="10">'
	
	
	document.write('<div id="BowmanMenu" style="position:absolute; left:0px; top:432px; z-index:511; width: 330px; height: 150px"></div>');
	

	function mutasdaMenut(e, iIndex, iX, iY )
	{
		if ( mostMutat != 0 )
			return; 
		
		mostMutat = 1;
			
		var menuTartalom = "<table cellpadding=0 cellspacing=0 name=link_table id=link_table>";
		for (var i = 0; i < sorrend.length; i++)
		{
			// elso oszlop...
			menuTartalom += '<tr>' + akcio1;
			if ( iIndex == sorrend[i] )
				menuTartalom += pirosPont;
			else
				menuTartalom += uresPont;
			menuTartalom += tartalom[sorrend[i]] + '</td></tr>';

		}
		menuTartalom += '</table>';
		document.getElementById("BowmanMenu").innerHTML = menuTartalom;
	

		clearTimeout(timerMenu);
		Atlatszosag = 0;
		document.getElementById("BowmanMenu").style.filter="alpha(opacity="+Atlatszosag+")";
		document.getElementById("BowmanMenu").style.visibility = "visible";
		if (!e) var e = window.event;
		if (e.pageX || e.pageY)
		{
			document.getElementById("BowmanMenu").style.left = e.pageX - 90;
			if (document.getElementById("BowmanMenu").style.left.indexOf("-") != "-1")
				document.getElementById("BowmanMenu").style.left = 0;
			document.getElementById("BowmanMenu").style.top = e.pageY - 140;
		}
		else if (e.clientX || e.clientY)
		{
			document.getElementById("BowmanMenu").style.left = document.body.scrollLeft + event.clientX - 90;
			if (document.getElementById("BowmanMenu").style.left.indexOf("-") != "-1")
				document.getElementById("BowmanMenu").style.left = 0;
			document.getElementById("BowmanMenu").style.top = document.body.scrollTop + event.clientY - 140;
		}
		setTimeout("lassanMutasd()", 1);

	}
	
	function rejtsdelaMenut()
	{
		clearTimeout(timerMenu);
		timerMenu = setTimeout("lassanRejtsdEl()", 400);
	}
	
	function lassanMutasd()
	{
		document.getElementById("BowmanMenu").style.filter="alpha(opacity="+Atlatszosag+")";
		document.getElementById("BowmanMenu").style.fontSize='20px';
		Atlatszosag += 20;
		if ( Atlatszosag < 110 )
			setTimeout("lassanMutasd()", 1);
		else 
			mostMutat = 0;
	}	
	
	function lassanRejtsdEl()
	{
		document.getElementById("BowmanMenu").style.filter="alpha(opacity="+Atlatszosag+")";
		Atlatszosag -= 20;
		if ( Atlatszosag > 0 )
			setTimeout("lassanRejtsdEl()", 1);
		else
		{
			BowmanMenu.style.visibility = "hidden";
		}
	}
	
	
	
	
	
