﻿function tabSelected(index) {
    switch (index)
    {
        case 0:
        {
            if ($('#multimedia_mediaspace').contents().length < 1)
                createFLVPlayer();
            return;
        }
        case 1:
        {
            if ($('#jqGalView').contents().length < 1)
                createPhotoGallery();
            return;
        }
        default:return;
    }
}

function createFLVPlayer() {
    var flashvars = {
        controlbar: "over",
        backcolor: "695d50",
        file: __strings.videoXML,
        frontcolor: "ffffff",
        lightcolor: "f79122",
        screencolor: "000000",
        playlist: "bottom",
        playlistsize: "120"
    };

    createPlayer('multimedia_mediaspace', "601", "539", flashvars);
}

function createPhotoGallery()
{
    var imgArr = new Array();
    for (i=1; i < 61; i++)
    {
        imgArr.push(["/Content/images/slideshow/Athletik-Consultants-" + i + ".jpg", "/Content/images/slideshow/thumbs/Athletik-Consultants-" + i + ".jpg"])
    }
    $('#jqGalView').jqGalView({
        items : 20,
        title : "",
        openTxt : __strings.cliquezPourVoir,
        backTxt: __strings.cliquezPourRetourner,
        goFullSizeTxt: '',
        tnease: 'easeOutBack',
        images : imgArr
    });
}

$(document).ready(function() {
    //
    // selected menu item
    //
    $("ul#menuList a").eq(4).unbind().addClass("selected");
    //
    // change top text
    //
    $(".bienvenue").attr("class", "multimedia");
    //
    // create the tabs
    //
    var $tabs = $("#filmsPhotos_tabs").tabs();
    $tabs.bind('tabsselect', function(event, ui) { tabSelected(ui.index); });
    tabSelected($tabs.tabs('option', 'selected'));
});

