Behaviour.register({
	'div.sth2_link_player': function(el) {
		el = $(el);

		el.onclick = function() {
			document.location.href = el.down('a').href;
		}

		var over_classname = el.classNames().toArray()[0] + '_over';

		Event.observe(el, 'mouseover', function() {
			el.addClassName(over_classname);
		});
		Event.observe(el, 'mouseout', function() {
			el.removeClassName(over_classname);
		});
	},

	'div.sth2_play_movie': function(el) {
		/*
		el = $(el);
		var workId = el.down('div.work_id').innerHTML;
		if (!el.id) el.id = 'sth_play_movie' + Math.round(Math.random() * 100000);
		if (!workId) el.update('');
		else embedDocumentPlayer(workId, el.id);
		*/
	}
});
