function set_standart(img)
{
	window.clearTimeout(geomix_timer);
	img.className='';
}

function set_klein(img)
{
	img.className='vorschau_klein';
	geomix_timer=window.setTimeout(function(){img.className='vorschau_gross'},300);
	img.onmouseout = function() { set_standart(img); };
}

function clearDefault(el)
{
  	if (el.defaultValue==el.value) el.value = ""
}

function MM_openBrWindow(theURL,winName,features)
{
	window.open(theURL,winName,features);
}

function Galerie_openWindow(path,width,height)
{
	window.open('http://www.interforst.at/image.php?path='+path,'zoom','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,left='+((screen.width-width) / 2)+',top='+((screen.height-height) / 2)+',width='+width+',height='+height);
}

startList = function()
{
	if (document.all&&document.getElementById)
	{
		navRoot = document.getElementById("ueber_uns");
		for (j=0; j<navRoot.childNodes.length; j++)
		{
			node = navRoot.childNodes[j];
			if (node.nodeName=="LI")
			{
				node.onmouseover=function()
				{
					this.className+=" over";
				}
				node.onmouseout=function()
				{
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

window.onload=startList;