$(document).ready(function()
{
    if ($('#flash-game-game-replace').length)
	{
	    var freeGame = $('#flash-game-game-replace').attr('class');
	    var languageCode = $('#flash-game-language').attr('class');
        var width = "531";
        var height = "367";
        var flashvars = {};
        flashvars.url = url;
        // The following is a fulkod exception for the black jack trainer.
        if( freeGame == "bj/client" )
        {
            flashvars.xmlPath = "/swf/bj/xml/" +languageCode + "_content.xml";
            height = 426;
        }
        
        var params = { wmode: "opaque" };
        var attributes = false;

        swfobject.embedSWF("/swf/" + freeGame + ".swf", "flash-game-game-replace", width, height, "9.0.0", "/swf/expressinstall.swf", flashvars, params );
	}
	
});

