  $(document).ready(function(){
	$(".announcement-list:even").css("background-color", "#e7e7e7");
	$("#nav_14623 li a").wrapInner("<span></span>");
  });
 $(function(){
	$("#nav_14623 li").hover(
	function() {
	// mousehover
      $(this).find("ul").show();
    }, 
      function () {
	  // mouseout
        $(this).find("ul").hide();
      });
  });
