var player = null;
function playerReady(thePlayer) {
	player = window.document[thePlayer.id];
}

function loadVideo(videoUrl, teaserImg) {
    showLayer();
    player.sendEvent("LOAD", {file:videoUrl, image:teaserImg});
}

function stopVideo() {
    hideLayer();
    player.sendEvent('STOP');
}
        
// createPlayer() wordt aangeroepen in body onload

function createPlayer() {

	var flashvars = {
		file:"http://dl1.streamzilla.jet-stream.nl/bitsquad/perfectzien/video_v2.flv",
		image:"_video/preview.jpg",
		autostart:"false",
		backcolor:"0xF8F8F8",
		frontcolor:"0x636363",
		lightcolor:"0xx636363",
		screencolor:"0x000000"
	}

	var params = {
		allowfullscreen:"true", 
		allowscriptaccess:"always"
	}

	var attributes = {
		id:"player1",  
		name:"player1"
	}

	swfobject.embedSWF("_video/player.swf", "mediaplayer2", "309", "225", "9.0.115", false, flashvars, params, attributes);
	
}
