﻿$.noConflict();
jQuery(document).ready(function($) {
    $('a.cpdLink').bigTarget({ clickZone: 'div:eq(0)' });
    var h = 0;
    $('.cpdBox').each(function() {
        var th = $(this).height();
        if (th > h) {
            h = th;
        }
    }).height(h);
    h = 0;
    $('.cpdBox h2').each(function() {
        var th = $(this).height();
        if (th > h) {
            h = th;
        }
    }).height(h);
    $('div.rightColBox ul.feedListing a').bigTarget({ clickZone: 'div:eq(0)' });
});