/* fix various crystal limitations/issues */
(function ($) {
	$(document).ready(function () {
		// Strip links from inside elements
		$('.strip_links > a').each(function () {
			$(this).before($(this).html()).remove();
		});
	});
})(jQuery);

