jQuery(function() {
	//Because WP's Editor stinks and there are no known fixes, we have to affix meta-data to our tags with class "rounded"
	jQuery(".rounded").each(function() {
		if (jQuery(this).hasClass('slider-tabs')) {
			jQuery(this).attr('data-corner', 'left 5px;');
			jQuery('.slider-tabs a.rounded').each(function() {
				jQuery(this).attr('data-corner', 'top 4px; bottom 4px;')
			});
		} else if ( jQuery(this).hasClass('call-out') || jQuery(this).hasClass('border') || 
					(jQuery(this).closest("ul") == jQuery('ul.partners-list') && jQuery(this).hasClass('first'))
				  ) {
			jQuery(this).attr('data-corner', 'top 5px; bottom 5px;')
		} else if (jQuery(this).hasClass('thick-divider')) {
			jQuery(this).attr('data-corner', 'top 10px; bottom 10px;')
		}
	});
});
