
$(document).ready(function() {
    $('a.nw').click(function(e){
        window.open(this.href);
        e.preventDefault();
    });
});

