$(document).ready(function() {
    $(".tab").each(function(){
      $(this).click(function(){
        tabeId = $(this).attr('id');
        $(".tab").removeClass("active");
        $(this).addClass("active");
        $(".tab_mid").addClass("hide");
        $("#"+tabeId+"-1").removeClass("hide")   
        return false;	  
      });
    });  
  });
