﻿$(document).ready(function() {
    $(".targetBlank a[href^='http']").click(function() { window.open(this.href); return false; });
    $(".targetBlank a[href^='http']").attr('target', '_blank');
});
