  var a = null;
window.addEventListener("load",function(){
    $(document.querySelector("#menu")).delegate(".m_table","mouseout",function(){
	if(a!=null){
	  clearInterval(a.i);
	  a.e.style.display = "none";
	}
	this.querySelector(".m_table tbody").style.display="block";
	var e = this.querySelector(".m_table tbody");
	var c = setInterval(function(){
	    e.style.display = "none";
	  }, 450);
	a = {
	i: c,
	e: this.querySelector(".m_table tbody")
	}
      });
    $(document.querySelector("#menu")).delegate(".m_table tbody","mouseout",function(){
	if(a!=null){
	  clearInterval(a.i);
	  a.e.style.display = "none";
	}
	this.style.display="block";
	var e = this;
	var c = setInterval(function(){
	    e.style.display = "none";
	  }, 450);
	a = {
	i: c,
	e: this
	}
      });
    $(document.querySelector("#menu")).delegate(".m_table","mouseover",function(){
	if(a!=null){
	  clearInterval(a.i);
	  a.e.style.display = "none";
	}
	this.querySelector(".m_table tbody").style.display="block";
      });
  },false);

