﻿var bcExp;
var modVP;
var modMenu;
var modExp;
var modCon;

function onTemplateLoaded(experienceId) {
    bcExp = window.brightcove.getExperience(experienceId);
    modVP = bcExp.getModule(window.APIModules.VIDEO_PLAYER);
    modMenu = bcExp.getModule(window.APIModules.MENU);
    modExp = bcExp.getModule(window.APIModules.EXPERIENCE);
    modCon = bcExp.getModule(window.APIModules.CONTENT);
}

function playVideo(d) {
    if (modMenu.isMenuPageShowing()) {
        modMenu.closeMenuPage();
    }

    modVP.loadVideo(d);
}

$(document).ready(function () {
    $('div.video-wrapper a').click(function () {
        $('div.video-wrapper a').removeClass('active');
        $(this).addClass('active');
    });
});
