﻿$(function() {
    $('.date img').betterTooltip({
        speed: 150,
        delay: 300
    });

    $('#hlJobPostingComment, #hlShareComment').click(function() {
        var width = 575, height = 625;
        openWindow('/Share/Comment/', width, height, false, 'Comment');
        return false;
    });
    $('#hlShareEmail').click(function() {
        var width = 575, height = 625;
        openWindow('/Share/Email/', width, height, false, 'Email');
        return false;
    });
    $('#hlSharePrint').click(function() {
        var width = 575, height = 700;
        openWindow('/Share/Print/', width, height, true, 'Print');
        return false;
    });
    $('#hlShareSocial').click(function() {
        var width = 575, height = 500;
        openWindow('/Share/Social/', width, height, false, 'Social');
        return false;
    });
});