[jQuery] newbiish.. must be a better way than what I'm doing to find the next div after the following inputs?

[jQuery] newbiish.. must be a better way than what I'm doing to find the next div after the following inputs?


This should be easy, but I'm stumped on this. I can't find examples
showing cases where the find 'skips ahead' .. what I want to is find
the next <div> after any of the radio inputs is clicked so that if I
have...
<div>

<input type="radio" name="color" value="blue"/> Blue


<input type="radio" name="color" value="green"/> Green


<input type="radio" name="color" value="red"/> Red


    <div class="childSec">
Stuff
    </div>
</div>
$(":input[@name='color']").click( function () {
$(this).parent().parent().find('div.childSec') //must be
something better than parent, parent?
});
I've been trying different selectors for 'div' inside of parent and
prev but not having much luck. I'm sure I'm missing something stupid.
Any help appreciated.