(function() {

	var targetId = null;

	function embedPlayer(data) {
		embedDocumentPlayer(data[0], targetId, 277, data[2], data[1], 237);
	}

	Behaviour.register({

		'div.studio-fiveplayer .movie-large img': function(el) {
			var data = el.getAttribute("data").split(/-/);
			targetId = 'player-area-' + Math.round(Math.random() * 900000);
			new Insertion.After(el, '<div id="' + targetId + '"></div>');
			$(el).remove();
			embedPlayer(data);
		},
		'div.studio-fiveplayer .movie-thumb img': function(el) {
			el.onclick = function() {
				var data = el.getAttribute("data").split(/-/);
				embedPlayer(data);
			}
		}
	});
})();

