﻿jQuery(document).ready(function () {
    jQuery('#title a').click(function () {
        window.open(this.href);
        return (false);
    });
    jQuery('#podcasts a').click(function () {
        window.open(this.href);
        return (false);
    });
});

