﻿$(document).ready(function() {
    if ($(".StreamIOcontainer").length) {
        $(".StreamIOcontainer").each(function() {

            var text = $(this).children("p").text();

            var splitted = text.split(",");
            var width = splitted[0];
            var height = splitted[1];
            var movieId = splitted[2];

            var html = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="' + width + '" height="' + height + '" id="main" align="middle">' +
                            '<param name="movie" value="http://www.streamio.se/players/projectViewerEmbedded.swf" />' +
                            '<param name="allowFullScreen" value="true" />' +
                            '<param name="flashvars" value="projectId=' + movieId + '" />' +
                            '<param name="quality" value="high" />' +
                            '<param name="bgcolor" value="#FFFFFF" />' +
                            '<param name="wmode" value="transparent"/>' +
                            '<embed width="' + width + '" height="' + height + 'wmode="transparent" src="http://www.streamio.se/players/projectViewerEmbedded.swf" flashvars="projectId=' + movieId + '" quality="high" bgcolor="#FFFFFF" name="main" align="middle" type="application/x-shockwave-flash" allowfullscreen="true" />' +
                        '</object>'
            $(this).html(html);
        });
    }
});