{footer_script}{literal} jQuery(document).ready(function(){ jQuery("#activate_comments").change(function(){ if ($(this).is(':checked')) { jQuery("#comments_param_warp").show(); } else { jQuery("#comments_param_warp").hide(); } }); var targets = { 'input[name="rate"]' : '#rate_anonymous', 'input[name="allow_user_registration"]' : '#email_admin_on_new_user', 'input[name="comments_validation"]' : '#email_admin_on_comment_validation', 'input[name="user_can_edit_comment"]' : '#email_admin_on_comment_edition', 'input[name="user_can_delete_comment"]' : '#email_admin_on_comment_deletion', }; for (selector in targets) { var target = targets[selector]; jQuery(target).toggle(jQuery(selector).is(':checked')); (function(target){ jQuery(selector).bind('change', function() { jQuery(target).toggle($(this).is(':checked')); }); })(target); }; }); {/literal}{/footer_script}