﻿$j(document).ready(function () {
    /* Open all links that start with 'http' in a new window */
    $j("a[href^='http']").bind("click", function () {
        window.open($j(this).attr('href'));
        return false;
    });
});
