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('placeholder3', '/video/08group502.flv', '/images/08group502.jpg', false);
	createPlayer('placeholder1', '/video/08group102.flv', '/images/08group102.jpg', false);
	createPlayer('placeholder2', '/video/08group202.flv', '/images/08group202.jpg', false);
	createPlayer('placeholder4', '/video/08group802.flv', '/images/08group802.jpg', false);
	createPlayer('placeholder5', '/video/08group402.flv', '/images/08group402.jpg', false);
	createPlayer('placeholder6', '/video/08group101.flv', '/images/08group101.jpg', false);
	createPlayer('placeholder7', '/video/08group302.flv', '/images/08group302.jpg', false);
	createPlayer('placeholder8', '/video/08group602.flv', '/images/08group602.jpg', false);
	createPlayer('placeholder9', '/video/08group501.flv', '/images/08group501.jpg', false);
	createPlayer('placeholder10', '/video/08group702.flv', '/images/08group702.jpg', false);
	createPlayer('placeholder11', '/video/08group701.flv', '/images/08group701.jpg', false);
	createPlayer('placeholder12', '/video/08group301.flv', '/images/08group301.jpg', false);
	createPlayer('placeholder13', '/video/08group803.flv', '/images/08group803.jpg', false);
}

window.onload=init;

