jQuery(document).ready(function(){CORTEX_JS.init();CORTEX_Tab.event()});var CORTEX_JS={init:function(){CORTEX_Tab.init();CORTEX_ColorPicker.init()}};var CORTEX_ColorPicker={init:function(){var $colorPicker=jQuery(".cortex-colorpicker");if($colorPicker.length>0){$colorPicker.wpColorPicker()}}};var CORTEX_Tab={init:function(){jQuery(".cortex-tab.selected").each(function(){CORTEX_Tab.check(jQuery(this))})},event:function(){jQuery(document).on("click",".cortex-tab",function(){CORTEX_Tab.check(jQuery(this))})},check:function(elem){var chosen_tab_name=elem.data("target");elem.siblings().removeClass("selected");elem.addClass("selected");elem.closest(".cortex-inner").find(".cortex-tab-content").removeClass("cortex-tab-show").hide();elem.closest(".cortex-inner").find(".cortex-tab-content."+chosen_tab_name+"").addClass("cortex-tab-show").show()}};