﻿$(function () {
    //preload images in CSS
    $.preloadCssImages();

    //init external links
    $('a[rel="external"]').click(function () {
        $(this).attr({ 'target': '_blank' });
    });

    //show flash videos
    var showFlash = true;

    if (showFlash) {
        $('div.intro #video').flash(
            {
                swf: '/flash/intro-video.swf',
                height: 480,
                width: 900,
                wmode: 'transparent',
                flashvars: {
                    //videoURL: 'Comp 1_19.f4v',
                    //skinURL: 'SkinOverPlayStopSeekMuteVol.swf'
                    videoURL: '/flash/Comp 1_19.f4v',
                    skinURL: '/flash/SkinOverPlayStopSeekMuteVol.swf'
                }
            }
        );

        $('#ft #video').flash(
            {
                swf: '/flash/footer-video.swf',
                height: 98,
                width: 174,
                wmode: 'transparent',
                flashvars: {
                    //videoURL: '../flash/3v201v9fyp2.mp4'
                    videoURL: '/flash/3v201v9fyp2.mp4'
                }
            }
        );
    }
});

