// ---------------------------  Document Ready
$(document).ready(function(){
//Open External Links in a New Window
$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });

// the end of Document Load
});