$('document').ready(function() {

    // Hide/reveal replacement CV upload field

    var showCV = $('.js .pushed:not(:has(".error"))');

    $(showCV).css("display", "none");

    $('input.replaceCV').click(function() {
        $(showCV).slideDown();
    });
    $('input.selectCV').click(function() {
        $(showCV).slideUp();
    });

    // Hide/reveal video transcript

    $('#transcriptHead').html('<a href="#" class="reveal">View Transcript</a>');

    $('.js .twister').css("display", "none");
    $('.reveal').toggle(
     function() {
         $(this).text('Hide transcript');
         $('.js .twister').slideDown();
     },
     function() {
         $(this).text('View transcript');
         $('.js .twister').slideUp();
     });

});
