/**
 *   Spotlight Tabs Module (as seen on Business landing page)
 */
jQuery(document).ready(function ($) {
	/**
	 * Initializes Tab Modules having CSS classes:
	 * - tab-wrapper
	 * - subtab-wrapper (can be nested within the above class)
	 */
		$('.itcenter-mod-spotlight-tabs .tab-wrapper').each(function () {
			$(this).tabs();
		});
		$('.itcenter-mod-spotlight-tabs').css('visibility', 'visible');
});

