$('document').ready(function() {
  $('#new_nav a').mouseover(function() {
    if($.browser.msie && parseInt($.browser.version) < 9) {
      $(this).children('.ro').show();
      $(this).children('span').css({color: '#ffffff'});
    } else {
      $(this).children('.ro').stop(false, true).fadeIn();
      $(this).children('span').stop(false, true).animate({color: '#ffffff'});
    }
  }).mouseleave(function() {
    if($.browser.msie && parseInt($.browser.version) < 9) {
      $(this).children('.ro').hide();
      $(this).children('span').css({color: '#0082c8'});
    } else {
      $(this).children('.ro').stop(false, true).fadeOut();
      $(this).children('span').stop(false, true).animate({color: '#0082c8'});
    }
  });
});

