/* vivid planet software gmbh, HJ, 25.02.03 */
visible = new Array(false,false,false,false,false,false,false,false,false,false);

function show_submenu(id,td) {	 
    document.getElementById("firstTd"+id).style.borderLeft ="1px solid #FFFFFF";	
    document.getElementById("firstTd"+id).style.backgroundColor ="#000000";	
    document.getElementById("sub_menu"+id).style.display="block";	
}
function hide_submenu(id) {
	var countdown = 300;
    setTimeout("set_hidden("+id+")",countdown)	
}
function set_hidden(id) {
	if(visible[id]==false) {
     document.getElementById("firstTd"+id).style.borderLeft ="0px solid #FFFFFF";	
     document.getElementById("firstTd"+id).style.backgroundColor ="";	
     document.getElementById("sub_menu"+id).style.display="none";
	}
}
