/* Globals */

// Video player

var player = null; 
			
function playerReady(thePlayer) { player = window.document[thePlayer.id]; }

function play() {
if(player) {
	player.sendEvent('LOAD', "Nicola_h.flv");
	player.sendEvent('PLAY');
}					
}
