// Open .pdf, external links, and links with the class _blank into a new window

// Document Ready

$(document).ready(function(){

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

});