﻿var videoPlayer
// jquery js

var playlist = null;


function initVideo(p_player, p_url, p_title, p_desc, p_id) {
    var opts = { skinPath: "../../../skins/ClearOverAll.swf", autoLoad: true, autoPlay: false, previewImagePath: "../../../images/play_pause.gif", skinAutoHide: true, volume: 100 };
    videoPlayer = new FAVideo("videoBox", null, 530, 300, opts);


    videoPlayer.load(p_url);
    showDescription(p_title, p_desc, p_id);
    videoPlayer.addEventListener("complete", this, complete);
}


function playVideo(p_player, p_url, p_title, p_desc, p_id) {
    p_player.load(p_url);
    p_player.play();
    showDescription(p_title, p_desc, p_id);
    scroll(0, 0);
}

function complete(p_event) {
    videoPlayer.pause();
}
function showDescription(p_title, p_desc, p_id) {
    var boxId = 'video' + p_id;
    document.getElementById('titleDesc').innerHTML = '<H2><strong>' + p_title + '</strong></H2>';
    document.getElementById('titleDesc').innerHTML += '<p><span style="color: #404040;">' + p_desc + '</span></p>';
    $('.videobox').removeClass('videoboxSelected');
    $('#' + boxId).addClass('videoboxSelected');

}