/* The 'Show Transcript' function used on Video Pages */

function showTranscript()
{
    // Get current movie
    current = currentVideoId;

    if ($("." + current).is(":hidden")) {
        $("." + current).slideDown("slow");
      } else {
        $("." + current).slideUp("slow");
      }
}

/* The 'Show Transcript' function used on the Vizzl page */

function showVizzlTranscript()
{
    if ($(".transcript").is(":hidden")){
        $(".transcript").slideDown("slow");
    } else {
        $(".transcript").slideUp("slow");    
    }
}