$(document).ready(function(){
    $('body').css({
        backgroundColor: '#000'
    });
});

function setPage(){    
    var ratio = 1.78;
    var video_height = 0;
    var video_width = 0;

    if($('#mobile').text() == 'false'){
        video_width = windows_width * 0.99;
        video_height = video_width/ratio;
        
        if(video_height > windows_height * 0.9){
            video_height = windows_height * 0.9;
            video_width = video_height * ratio;
        }
        
        $('#video_container').html('<object width="'+video_width+'" height="'+video_height+'" id="wistia_301247" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="movie" value="http://embed.wistia.com/flash/embed_player_v1.1.swf"/><param name="allowfullscreen" value="true"/><param name="allowscriptaccess" value="always"/><param name="wmode" value="opaque"/><param name="flashvars" value="videoUrl=http://embed.wistia.com/deliveries/aa60be217849c53985a308e979f1633a32952369.bin&stillUrl=http://embed.wistia.com/deliveries/4afb0640c3e91bd0389e3b75059e9ff2ff3232fc.bin&unbufferedSeek=false&controlsVisibleOnLoad=false&autoPlay=true&endVideoBehavior=loop&playButtonVisible=true&embedServiceURL=http://distillery.wistia.com/x&accountKey=wistia-production_4907&mediaID=wistia-production_301247&mediaDuration=62.92"/><embed src="http://embed.wistia.com/flash/embed_player_v1.1.swf" width="'+video_width+'" height="'+video_height+'" name="wistia_301247" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" wmode="opaque" flashvars="videoUrl=http://embed.wistia.com/deliveries/aa60be217849c53985a308e979f1633a32952369.bin&stillUrl=http://embed.wistia.com/deliveries/4afb0640c3e91bd0389e3b75059e9ff2ff3232fc.bin&unbufferedSeek=false&controlsVisibleOnLoad=false&autoPlay=true&endVideoBehavior=loop&playButtonVisible=true&embedServiceURL=http://distillery.wistia.com/x&accountKey=wistia-production_4907&mediaID=wistia-production_301247&mediaDuration=62.92"></embed></object><script src="http://embed.wistia.com/embeds/v.js" charset="ISO-8859-1"></script>');
        if(!navigator.mimeTypes['application/x-shockwave-flash'] || navigator.userAgent.match(/Android/i)!==null)Wistia.VideoEmbed('wistia_301247',video_width,video_height,{videoUrl:'http://embed.wistia.com/deliveries/57cda9a9f8106feef8cd453339589d0c71e0b468.bin',stillUrl:'http://embed.wistia.com/deliveries/4afb0640c3e91bd0389e3b75059e9ff2ff3232fc.bin',distilleryUrl:'http://distillery.wistia.com/x',accountKey:'wistia-production_4907',mediaId:'wistia-production_301247',mediaDuration:62.92});
    }
    else{
        if(windows_width > windows_height){
            video_height = windows_height * 0.9;
            video_width = video_height * ratio;
            if (video_width > windows_width * 0.9) {
                video_width = windows_width * 0.9;
                video_height = video_width / ratio;
            }
        }
        else{
            video_width = windows_width * 0.9;
            video_height = video_width / ratio;
            if (video_height > windows_height * 0.9) {
                video_height = windows_height * 0.9;
                video_width = video_height * ratio;
            }
        }
    }
}

