<!--
      var flashvars =
      {
        id:                    'playerID',
        file:                  'http://www.baltictv.de/_VJK/_media/VJK-copyright-BalticMedia.mp4',
        autostart:             'true',
        controlbar:            'none',
        icons:                 'false',
        quality:               'false',
        repeat:                'list',
        stretching:            'exactfit'
      };

      var params =
      {
        allowfullscreen:       'false', 
        allowscriptaccess:     'always',
		wmode:				   'transparent'
      };

      var attributes =
      {
        id:                    'playerID', 
        name:                  'playerID'
      };

      swfobject.embedSWF('http://www.baltictv.de/_VJK/player.swf', 'movie', '528', '299', '9.0.124', 'false', flashvars, params, attributes);


function swapview() {
$("#c233")
	  .fadeOut(1000, function() { 
								$('#video_content').fadeIn(500); 
								});
}
function swapback() {
$("#video_content")
	  .fadeOut(500, function() { 
								$('#c233').fadeIn(1000); 
								});
}



var player;
var playerName;
function playerReady(obj)
{
player = gid(obj.id);
player.addModelListener('STATE', 'stateMonitor');
};

function stateMonitor(obj)
{
if((obj.newstate == 'COMPLETED') )
{
swapback();
}
if((obj.newstate == 'PAUSED') )
{
$("#toggle").html('<img src="http://www.baltictv.de/_VJK/play.png" border="0">');
}
if((obj.newstate != 'PAUSED') )
{
$("#toggle").html('<img src="http://www.baltictv.de/_VJK/pause.png" border="0">');
}

};
function gid(name)
{
return document.getElementById(name);
};
//-->

