$(document).ready(function(){
     $(".promo a").click(function(switcher){
          $(".layer_vimeo_1").toggle();
          $(".layer_vimeo_2").toggle();
          
          if($(this).hasClass("switched")){
               $(this).removeClass("switched");
               $(this).text("Мы на видео");
          }else{
               $(this).addClass("switched");
               $(this).text("Главная");
          }
     });
});
