$(document).ready(function() {

   if($.browser.msie) {
    $('#ba_about_container li a.url').hover(function() {
      $(this).addClass('hover');
    }, function() {
      $(this).removeClass('hover');
    });
  }
  });
