 $(document).ready(function(){
     $(".stores").hide();
     
     $("thead").click(function(event){
       $(this).next(".stores").toggle();
       return false;
     });
   });
