//Ensenyar / Amagar la transcripció del video.
jQuery(document).ready(function(){
  jQuery("#sh_transcripcio_video").click(function(){
    jQuery("#transcrip").toggle();
    if (jQuery("#transcrip").css("display")=="block"){
      jQuery("#sh_transcripcio_video").html("Amagar la transcripci&oacute");
    }else{
      jQuery("#sh_transcripcio_video").html("Transcripci&oacute del v&iacute;deo");
    }
  });
  jQuery("a.obrirTancarCompartir").click(function(){
    jQuery("div.comparteix").toggle();
  });
});