﻿// JavaScript Document
/*function show(aObj){
	clearTimeout(aObj.timeSpan);
	aObj.style.backgroundColor = "#fff";
	
	var menu = document.getElementById(aObj.id + "_menu");
	menu.style.display = "block";
	if (aObj.getBoundingClientRect().bottom + menu.offsetHeight > document.documentElement.clientHeight)
		menu.style.top = -(aObj.offsetHeight + menu.offsetHeight)+"px";
	else
		menu.style.top = "30px";
	         menu.style.left = "0px";
	menu.onmouseout = aObj.onmouseout = function(){
		aObj.timeSpan = setTimeout("hide('"+aObj.id+"')",500);
	}
	menu.onmouseover = function (){clearTimeout(aObj.timeSpan);}
	
}
function hide(id){
	document.getElementById(id).style.backgroundColor = "";
	document.getElementById(id + "_menu").style.display = "none";
}*/

