$(document).ready(function(){
    $('A[rel="external"]').attr('target', '_blank');
    if ($('.box-top').length > 0) { 
       $('.box-content TABLE TD A').hover(
       function(){
           $('.box-top .box').stop(true,true);
           if($.browser.msie){
                $(this).children('.box').css('display','block');
           }else{
                 $(this).children('.box').fadeIn(500);
           }
       },
       function(){
            $('.box-top .box').stop(true,true);
            if($.browser.msie){
                $(this).children('.box').css('display','none');
           }else{
                $(this).children('.box').fadeOut(500);
           }
       });
     };
});

