$(document).ready(function(){
	$(".info_drop").hide();
	$(".btn-slide").click(function(){
		$(".info_drop").slideToggle("slow");
		 $(this).next(".info_drop").toggle();
		 return false;
	});
	
	 
});

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