nth-child() - sets of 4?

nth-child() - sets of 4?

I'm using this function in my navigation:
  1. $(document).ready(function(){
  2. $('ul.tabNav a').click(function() {
  3. var curChildIndex = $(this).parent().prevAll().length + 1;
  4. $(this).parent().parent().children('.current').attr('id', 'idle');
  5. $(this).parent().parent().children('.current').removeClass('current');
  6. $(this).parent().addClass('current');
  7. $(this).parent().attr('id', 'current');
  8. $(this).parent().parent().next('.tabContainer').children('.current').slideUp('fast',function() {
  9. $(this).removeClass('current');
  10. $(this).parent().children('div:nth-child('+curChildIndex+')').slideDown('normal',function() {
  11. $(this).addClass('current');
  12. });
  13. });
  14. return false;
  15. });
  16. });
I have 16 divs in the container and 4 menu buttons - I'd like to reveal 4 subsequent sibling divs at a time. 
I've tried this:
  1. $(this).parent().children('div:nth-child('+curChildIndex+')').nextUntil('section','div').slideDown('normal',function() {
  2. $(this).addClass('current');
...with empty <section></section> elements as dividers, but it isn't working because it is apparently always counting from the start and not the curChildIndex var as I expected. (I obviously did not write the function.)
Suggestions on how to make it work?