// make entire BB column clickable with the link contained within - col needs 'col-link' applied to it.
jQuery(document).ready(function() {
jQuery('.col-link .fl-col-content').each(function() {
var callout_link = jQuery(this).find('a').first().attr('href');
jQuery(this).wrapInner('<a></a>');
jQuery(this).find('a').first().attr('href',callout_link);
});
});