$.noConflict();
jQuery(document).ready(function ($) {
    $('.subject, .item-list ul li,.public-shortcut').each(function () {
        $(this).attr('title', $(this).find('a').attr('title'));
    });

    $('.subject, .item-list ul li,.public-shortcut').click(function (event) {
        event.preventDefault();
        url = $(this).find('a').attr('href');
        if ($(this).find('a').attr('target') == "_blank") {
            window.open(url, '_newtab');
        } else {
            window.location.href = url;
        }
    });
});
