﻿$(document).ready(function ($) {
    $(".externalLink").click(function () {
        window.open($(this).attr("href"));
        return false;
    });
});

jQuery.fn.exists = function () {
    return jQuery(this).length > 0; 
}
