jQuery(document).ready(
	function($) {
		$('.widget_drss_callouts div').each(
			function() {
				$(this).click(
					function() {
						window.location = $(this).children('a').attr('href');
					}
				);
			}
		);
	}

);
