$(document).ready(function() {
	
	$("a[title='podcast']").each(function() {
		var href = $(this).attr('href');
		var parent = $(this).parent();
		parent.flash(
			{ 
				src: '/layouts/include/player.swf',
				width: 290,
				height: 24,
				flashvars: { playerID: 1, soundFile: href }
			},
			{ version: 8 }
    	);
	});
	
	$('a[@href^="http://www.youtube.com"]').flash(
		{ width: 425, height: 350 },
		{ version: 8 },
		function(htmlOptions) {
			$this = $(this);
			htmlOptions.src = $this.attr('href');
			$this.before($.fn.flash.transform(htmlOptions));						
		}
	);
	
});