﻿/// <reference path="jquery-1.3.2.js" />

$(document).ready(function() {
    $("#links a").click(function() {
        window.open(this.href);
        return false;
    });
});

