﻿$(function () {
    $("table a").lightBox();
    $(".a").bind("click", function (e) {
        e.preventDefault();
        
        window.open(this.href);
    });
});