  $(document).ready(function(){
	$("#nav_14623 li a").wrapInner("<span></span>");
  });
 $(function(){
	$("#nav_14623 li").hover(
	function() {
	// mousehover
      $(this).children("ul").show();
    }, 
      function () {
	  // mouseout
        $(this).children("ul").hide();
      });
	$("#nav_14623 li ul li").hover(
      function () {
	  // mouseout
        $(this).children("ul").hide();
      });
  });

