[jQuery] Shorter method?

[jQuery] Shorter method?


    if($(obj).attr('checked')) { // Hide the correct answers?
        $('.quizsubheader').hide('slow');
    } else {
        $('.quizsubheader').show('slow');
    };
What's the best one-liner method to achieve the same result above?
Sam