// JavaScript Document	
	window.onload=lala;
	function lala()
	{
		var find = document.getElementById("f-menu");
		var alems = find.getElementsByTagName('li');
		var alems = find.getElementsByTagName('a');
		var fie = document.createElement("div");
		if (alems[0].getAttribute("class") != "active")
		{
			alems[0].onmouseover = function()
			{
				this.appendChild(fie);
				this.style.zIndex='';
			}
			alems[0].onmouseout = function()
			{
				this.removeChild(fie);
				this.style.zIndex='';
			}
		}
		/* else if (alems[0].getAttribute("class") == "active"){ alems[0].style.zIndex='999'; alems[0].style.zIndex='999';		} */
		if (alems[1].getAttribute("class") != "active")
		{
			alems[1].onmouseover = function()
			{
				this.appendChild(fie);
				this.style.zIndex='777';
			}
			alems[1].onmouseout = function()
			{
				this.removeChild(fie);
				this.style.zIndex='';
			}
		}
		if (alems[2].getAttribute("class") != "active")
		{
			alems[1].onmouseover = function()
			{
				this.appendChild(fie);
				this.style.zIndex='';
			}
			alems[2].onmouseout = function()
			{
				this.removeChild(fie);
				this.style.zIndex='';
			}
		}
		var x = find.getElementsByTagName("li");
		for (v=0;v<x.length;v++)
		{
			if (x[v].getAttribute("class"))
			{
				x[v].appendChild(fie);
			}
		}
	}
