
  $(document).ready(function(){
     $("#press_center_item").hover(
      function () {
$("#press_center_item_link").attr("class", this.className+" topmenu_item_link_hover");  
              $("#submenu_press").fadeIn("def");      }, 
      function () {
       $("#submenu_press").fadeOut("def", function () {	   $("#press_center_item_link").attr("class", "topmenu_item_link");  });


      }
    );

                $("#leftnav a, #rightnav a, #content a, #banner_content a, #main_content a, #interior_content a").hover(function() {
                $(this).animate({ color: "#000" }, "def");
        },function() {
                 $(this).animate({ color: "#4c6994" }, "def");
        });
  });