// JavaScript Document
//----------------------------------- 
function dynMenu(id){
	if (!document.getElementById(id))return (false);	
	var td = document.getElementById(id).getElementsByTagName("td");
	var app;
	for (i=0;i < td.length;i++){
		if (td[i].getElementsByTagName("table")[0] != undefined){
			td[i].onmouseover = function(){
				this.getElementsByTagName("table")[0].style.display = "block";
				//this.style.background = "#173F7D"
			}
			td[i].onmouseout = function(){
				this.getElementsByTagName("table")[0].style.display = "none";
				this.style.background = '';
			}
		}
	}
}
