﻿// Load this file after videoWidget.js is loaded
function initCurrentVideoWidget()
{
    //Video widget settings initialization
    activeVideoId = 0;
    activePosition = 0;
    markedVideoId = 0;
    totalVideosNum = 3;
    width = 600;
    contentHeight = 234;
    stripHeight = 144;
    
    //Top content images
    contentImages.push("/certification/images/SCP_1.0_lrg.jpg");
    contentImages.push("/certification/images/SCP_1.1_lrg.jpg");
    contentImages.push("/certification/images/SCP_1.2_lrg.jpg");
    
    //Top content text
    contentText.push("<h2>Network Management Fundamentals</h2>This training video introduces you to network management protocols and explains the requirements of the SCP program on this subject.  This section covers specific network management protocols like ICMP and SNMP and discusses how MIBs and OIDs work.");
    contentText.push("<h2>Introduction to Network Management Protocols</h2>This training video provides an overview of how network management applications leverage network management protocols. We’ll also describe the different types of network management protocols and detail how the most common ones work.");
    contentText.push("<h2>Understanding MIBs, OIDs, and Performance Counters</h2>In this training video we’ll discuss how Management Information Bases (MIBs), Object Identifiers (OIDs), and Performance Counters are leveraged with SNMP and WMI, respectively.");
    
    //Video strip small images descriptions
    smallImagesDescriptions.push("Network Management Fundamentals");
    smallImagesDescriptions.push("Introduction to Network Management Protocols");
    smallImagesDescriptions.push("Understanding MIBs, OIDs, and Performance Counters");
    
    //Video strip small images
    contentSmallImages.push("/certification/images/SCP_1.0_sm.jpg");
    contentSmallImages.push("/certification/images/SCP_1.1_sm.jpg");
    contentSmallImages.push("/certification/images/SCP_1.2_sm.jpg");
    
    videoLinks.push("/certification/videos/SCP_1_0.wvx");
    videoLinks.push("/certification/videos/SCP_1_1.wvx");
    videoLinks.push("/certification/videos/SCP_1_2.wvx");
    
    //Call init function of the widget
    initializeVideoWidget();
}
