<!--
var delay = 50;
var active = new Array();

function over(obj){
	obj.style.color="#ffffff";
	obj.style.backgroundColor="#250000";
	window.clearTimeout(active[obj.id]);
	if(obj.id.split("_")[0]!="sub"){
	document.getElementById("sub_"+obj.id).style.left=document.getElementById(obj.id).offsetLeft+document.getElementById("menue").offsetLeft;
	document.getElementById("sub_"+obj.id).style.visibility="visible";
	document.getElementById("sub_"+obj.id).style.zIndex=2;
	}}	
	
function out(obj){
	obj.style.color="#ffff99";
	obj.style.backgroundColor="#440000";
	if(obj.id.split("_")[0]!="sub"){
		active["sub_"+obj.id]=window.setTimeout("hide('sub_"+obj.id+"')",delay);}
	else{active[obj.id]=window.setTimeout("hide('"+obj.id+"')",delay);}
	}

function hide(id){
	document.getElementById(id).style.visibility="hidden";
	document.getElementById(id).style.zIndex=0;
	}		
//-->
