// opens links in a new window that have a rel attribute of "external"
// required as XHTML Strict doctype does not allow use of target attribute
$(document).ready( function() {
    $('a[rel="external"]').click( function() {
        window.open($(this).attr('href'));
        return false;
    });
});