$(document).ready(function() {
    // open links in a new window
    $('a.new-window').click(function(){
        window.open(this.href);
        return false;
    });
});