﻿//Strict doctype doesn't allow target _blank so this adds it to links with .blank class

$(document).ready(function(){
    $('.blank').attr('target', '_blank');
});




