/**
 * 
 */

//var jq = $;

jq(document).ready(function() {

	jq('.tx-tcmediaplaylist-pi1').each((function(index) {
		var playerID = jq('.player', this).attr('id');
		var cid = playerID.substr(7);

		$f(playerID, "typo3conf/ext/tc_mediaplaylist/lib/flowplayer/flowplayer-3.2.7.swf", {
			plugins : {
				controls : {
					fullscreen : false,
					height : 30,
					autoHide : false
				}
			},

			clip : {
				autoPlay : false,
				autoBuffering : true
			}
			
		}).tc_playlist("#playlist_" + cid, {
			loop : true
		});
	}));
	
	
	jq('.tx-tcmediaplaylist-pi1 .chapterRightWrap table tbody tr:nth-child(odd)').addClass('odd');
	
});

