var currentPlayer=null;
var currentFile;
var currentImage;

function removeOldPlayer() {
	document.getElementById(currentPlayer).innerHTML = '<img src="'+currentImage+'" border="0" style="cursor:pointer" onclick="createPlayer(\''+currentPlayer+'\', \''+currentFile+'\', \''+currentImage+'\', true)">';
}


function createPlayer(thePlace, theFile, theImage, go) {
	if (currentPlayer!=null) { removeOldPlayer(); }

	currentPlayer=thePlace;
	currentFile=theFile;
	currentImage=theImage;

	var s = new SWFObject("/mediaplayer.swf","thePlayerId","320","260","7");
	s.addParam("allowfullscreen","true");
	s.addVariable("file",theFile);
	s.addVariable("width","320");
	s.addVariable("height","260");
	s.addVariable("displayheight","240");
	s.addVariable("overstretch","fit");
	s.addVariable("image",theImage);
	s.addVariable("showicons","false");
	if (go) { s.addVariable("autostart","true"); }

	s.write(thePlace);
}

function init() {
	createPlayer('placeholder1', '/video/09group202.flv', '/images/09group202.jpg', false);
	createPlayer('placeholder2', '/video/09group302.flv', '/images/09group302.jpg', false);
	createPlayer('placeholder3', '/video/09group401.flv', '/images/09group401.jpg', false);
	createPlayer('placeholder4', '/video/09group501.flv', '/images/09group501.jpg', false);
	createPlayer('placeholder5', '/video/09group502.flv', '/images/09group502.jpg', false);
	createPlayer('placeholder6', '/video/09group602.flv', '/images/09group602.jpg', false);
	createPlayer('placeholder7', '/video/09group701.flv', '/images/09group701.jpg', false);
	createPlayer('placeholder8', '/video/09group801.flv', '/images/09group801.jpg', false);
	createPlayer('placeholder9', '/video/09group601.flv', '/images/09group601.jpg', false);
	createPlayer('placeholder10', '/video/09group702.flv', '/images/09group702.jpg', false);
	}

window.onload=init;
