 $(function(){
	$("#nav_14623 li").hover(
	function() {
	// mousehover
      $(this).find("ul").show();
    }, 
      function () {
	  // mouseout
        $(this).find("ul").hide();
      });
  });
