﻿var loadAllFlashVideos = function() {

    var flashvars = {};
    var params = {};
    var scaleparams = {};
    var attributes = {};
    var flashvarsVideo = {};

    flashvars.xmlPath = "/xml/data.xml";
    flashvars.backgroundColor = "0x292828";
    flashvars.labelColor = "0xFFFFFF";

    params.wmode = "transparent";
    params.loop = "false";
    params.menu = "false";
    params.quality = "best";
    params.scale = "noscale";
    params.salign = "tl";
    
    scaleparams.wmode = "transparent";
    scaleparams.loop = "false";
    scaleparams.menu = "false";
    scaleparams.quality = "best";

    $(".load-profile-amjid").click(function() {
        loadNewVideo(this, "/images/poster-frames/amjid-profile-poster.jpg", "videos/profiles/amjid.flv", "Amjid", "Restaurant General Manager", "/restaurant/profiles/amjid.aspx");
    });
    $(".load-profile-ellie").click(function() {
        loadNewVideo(this, "/images/poster-frames/ellie-profile-poster.jpg", "/flash/videos/profiles/ellie.flv", "Ellie", "Team member - Dine-in", "/restaurant/profiles/ellie.aspx");
    });
    $(".load-profile-gareth").click(function() {
        loadNewVideo(this, "/images/poster-frames/gareth-profile-poster.jpg", "/flash/videos/profiles/gareth.flv", "Gareth", "Communications and Engagement Manager", "/head-office/profiles/gareth.aspx");
    });
    $(".load-profile-hudson").click(function() {
        loadNewVideo(this, "/images/poster-frames/hudson-profile-poster.jpg", "/flash/videos/profiles/hudson.flv", "Hudson", "Area Manager - Dine-in", "/head-office/profiles/hudson.aspx");
    });
    $(".load-profile-karen").click(function() {
        loadNewVideo(this, "/images/poster-frames/karen-profile-poster.jpg", "/flash/videos/profiles/karen.flv", "Karen", "Deputy Manager - Dine-in", "/restaurant/profiles/karen.aspx");
    });
    $(".load-profile-kate").click(function() {
        loadNewVideo(this, "/images/poster-frames/kate-profile-poster.jpg", "/flash/videos/profiles/kate.flv", "Kate", "Delivery Shift Manager", "/delivery/profiles/kate.aspx");
    });
    $(".load-profile-louise").click(function() {
        loadNewVideo(this, "/images/poster-frames/louise-profile-poster.jpg", "/flash/videos/profiles/louise.flv", "Louisa", "Delivery General Manager", "/delivery/profiles/louisa.aspx");
    });
    $(".load-profile-raj").click(function() {
        loadNewVideo(this, "/images/poster-frames/raj-profile-poster.jpg", "/flash/videos/profiles/raj.flv", "Raj", "Planning Analyst", "/head-office/profiles/raj.aspx");
    });
    $(".load-profile-suzie").click(function() {
        loadNewVideo(this, "/images/poster-frames/suzie-profile-poster.jpg", "/flash/videos/profiles/susie.flv", "Suzie", "RDO Scotland/North East", "/head-office/profiles/suzie.aspx");
    });

    swfobject.embedSWF("/flash/time-line.swf", "flashtimeline", "990", "200", "10.0.0", "/flash/expressInstall.swf", flashvars, params, attributes);
    // home page videos in vertical accordian
    swfobject.embedSWF("/flash/video-home-page.swf", "flashvideo-homepage-slide-0", "580", "326", "8", "/flash/expressInstall.swf", { src: '/flash/videos/home-page-banner/kathhp.flv', img: '/images/poster-frames/home-page-poster-frame.jpg', transcript: 'transcript-welcome.aspx' }, params, attributes)
    swfobject.embedSWF("/flash/video-home-page.swf", "flashvideo-homepage-slide-1", "580", "326", "8", "/flash/expressInstall.swf", { src: '/flash/videos/home-page-banner/elliehp.flv', img: '/images/poster-frames/ellie-home-page.jpg', transcript: 'transcript-my-first-day.aspx' }, params, attributes)
    swfobject.embedSWF("/flash/video-home-page.swf", "flashvideo-homepage-slide-2", "580", "326", "8", "/flash/expressInstall.swf", { src: '/flash/videos/home-page-banner/karenhp.flv', img: '/images/poster-frames/karen-home-page.jpg', transcript: 'transcript-training-that-gave-me-confidence.aspx' }, params, attributes)
    swfobject.embedSWF("/flash/video-home-page.swf", "flashvideo-homepage-slide-3", "580", "326", "8", "/flash/expressInstall.swf", { src: '/flash/videos/home-page-banner/katehp.flv', img: '/images/poster-frames/kate-home-page.jpg', transcript: 'transcript-a-big-promotion.aspx' }, params, attributes)
    swfobject.embedSWF("/flash/video-home-page.swf", "flashvideo-homepage-slide-4", "580", "326", "8", "/flash/expressInstall.swf", { src: '/flash/videos/home-page-banner/suziehp.flv', img: '/images/poster-frames/suzie-home-page.jpg', transcript: 'transcript-from-team-member-to-rdo.aspx' }, params, attributes)
    swfobject.embedSWF("/flash/video-home-page.swf", "flashvideo-homepage-slide-5", "580", "326", "8", "/flash/expressInstall.swf", { src: '/flash/videos/home-page-banner/rajhp.flv', img: '/images/poster-frames/raj-home-page.jpg', transcript: 'transcript-from-team-member-to-planning-analyst.aspx' }, params, attributes)
    swfobject.embedSWF("/flash/video-home-page.swf", "flashvideo-homepage-slide-6", "580", "326", "8", "/flash/expressInstall.swf", { src: '/flash/videos/home-page-banner/garethhp.flv', img: '/images/poster-frames/gareth-home-page.jpg', transcript: 'transcript-a-global-challenge.aspx' }, params, attributes)
    // profile video player
    swfobject.embedSWF("/flash/video-player.swf", "flashcontent", "568", "320", "9", "/flash/expressInstall.swf", flashvarsVideo, scaleparams, attributes);

    function loadNewVideo(sender, posterFrame, vidPath, profileeName, profileQuote, transcriptPath) {
        document.getElementById("flashcontent").LoadNewVideo(
            posterFrame, vidPath, profileeName, profileQuote, transcriptPath
        );
        $(".flash-icon").removeClass("active-profile");
        $(sender).addClass("active-profile");
    }
} ();

function flashInitialized() {
    $(".active-profile").trigger("click");
}
