$(document).ready (function(){
    $('ol').hide();
    $('h3').click(function() {
        var index = $(this).index();
        var index = (index -1)/5;
      $('ol:eq('+index+')').slideToggle(300);  
    });
});


