$(document).ready(function() {
	$('p.player').css({'width':'640','margin':'0 auto 20px','clear':'both','display':'block','position':'relative'});
	$('p.player a').each(function(){
		var file = $(this).attr('href');
		$(this).flash({
			swf : '/portal-core/news-reels/player.swf',
			width : 640,
			height : 400,
			flashvars : {
				path : file
			}
		});
		$(this).click(function(){
			return false;
		});
	});
});