$(document).ready(function () {
	$(".player").each(function (i) {
		var id 		= ($(this).attr('id'));
		var autoplay	= ($(this).attr('autoplay'))
		$(this).flash({
			//swfobject params
			swf: 'player/eBDMediaPlayer.swf',
			width:500,
			height:281,
			// these arguments will be passed into the flash document

			flashvars: {
				idvideo: id,
				autoplay: autoplay,
				playlistURL: 'player/playlist_1.xml',
				_width: 500,
				_height: 281,
				_videoWidth: 500,
				_videoHeight: 281,
				_videoLeft: 0,
				_videoTop: 0,
				
					interfaceURL: 'player/interface_1.xaml'
				
			},
			params: {
				allowscriptaccess: "always",
				allowfullscreen: "true",
				quality: "high",
				wmode: "opaque",
				scale: 1,
				bgcolor: '1a1b1b'
			},
			attributes: {}
		});
	});
});