﻿$(document).ready(function()
{
	if(navigator.userAgent.indexOf('Chrome') == -1)
	{
		$('.info-panel').slideToggle('fast');
		setTimeout('$(\'.info-panel\').slideToggle(\'fast\')', 3000);
	}
	
    $('embed.mmplayer').each(function(index, value) {
   
        var divId = 'flash_' + index;
        var flash = $(this);      

        var height = parseInt(flash.attr('height'));
        var width = flash.attr('width');
        var src = flash.attr('src');
        var autoVidPlay = flash.attr('autoVidPlay');
      
        var flashvars = {
                movieName: src,
                stageWidth: width,
                stageHeight: height,
                autoVidPlay: autoVidPlay
        };

        var params = {   
                scale: 'default',
                allowfullscreen: 'true'
                
        };
      
        flash.replaceWith('<div id="' + divId + '"></div>');
         
        swfobject.embedSWF("/player.swf", divId, width, height + 33, "9.0.115", "expressInstall.swf",
            flashvars, params, { allowFullScreen:"true", wmode: "window" });
                   
    });
});

