﻿$(document).ready(function() {
    $(".new-window").click(function(event) {
        event.preventDefault();
        window.open($(this).attr('href'));
    });
});
