﻿/* REF Speakers show/hide functionality */

$(document).ready(function() {

    // hide on load
    $(".ref-speakers-div .onLoadHide").hide();

    // toggle next tag with class .toggleThis on click
    $(".ref-speakers-div .toggleClick").click(function() {
        $(this).nextAll(".toggleThis").toggle();
        $(this).toggleClass("open");
        return false;
    });

    $(".ref-speakers-div .showAll").click(function() {


        if (!$(this).hasClass("open")) {
            $(this).html("Vis kun hovedinnlegg");
            $(this).addClass("open");
            $(".ref-speakers-div .ref-speakers2 ul").show();
            $(".ref-speakers-div .toggleClick").addClass("open");
        } else {
            $(this).html("Vis alle replikker");
            $(this).removeClass("open");
            $(".ref-speakers-div .ref-speakers2 ul").hide();
            $(".ref-speakers-div .toggleClick").removeClass("open");
        }
        return false;
    });

});

