jQuery(document).ready(function(){
jQuery('a.external').click(function(){
        window.open(this.href);
        return false;
    });
});
