jQuery(document).ready(function() { jQuery('#bwt_options-menubar a:first').addClass('bwt_options-active'); jQuery('#bwt_options-content .bwt_options-section:first').addClass('bwt_options-active'); jQuery('#bwt_options-menubar a').click(function(e){ e.preventDefault(); var section_id = jQuery(this).attr('href'); jQuery('#bwt_options-menubar .bwt_options-active').removeClass('bwt_options-active'); jQuery(this).addClass('bwt_options-active'); jQuery('#bwt_options-content .bwt_options-section' + section_id).addClass('bwt_options-active').siblings('.bwt_options-active').removeClass('bwt_options-active'); }); jQuery('.bwt_color_picker').each(function(){ var $this = jQuery(this); id = $this.attr('rel'); $this.farbtastic('#' + id); }); jQuery('input').focus(function(){ var $this = jQuery(this); if ($this.hasClass('bwt_color_field')) { if ($this.val() == '') $this.val('#'); var $parent = jQuery($this).parent(); jQuery($parent).siblings().show(); } }); jQuery('input').focusout(function(){ var $this = jQuery(this); if ($this.hasClass('bwt_color_field')) { var $parent = jQuery($this).parent(); jQuery($parent).siblings().hide(); } }); });