function hideMenu(menuId) {
	document.getElementById(menuId).style.top = '-2000px';
}
  function clearCallIn(menuId) {
	  var codeString = 'window.clearTimeout(timeoutId' + menuId + ')';
	  eval(codeString);  
  }
  function callIn(menuId) {
	var codeString = 'window.timeoutId' +menuId + ' = setTimeout("hideMenu(\''+menuId+'\')",1000)';
	eval(codeString);
  }
  function showMenu(menuId,topValue) {
	  document.getElementById(menuId).style.top = topValue;
	  timeOutName = eval('window.timeoutId'+menuId);
	  if (timeOutName) {
		  clearCallIn(menuId);
	  }
  }
