$(document).ready(function() {
	
	// embed YouTube videos
	$('a.youtube').flash(
		{width: 425, height: 355}, {version: 8},
		function (htmlOptions) {
			htmlOptions.src = $(this).attr('href');
			$(this).before($.fn.flash.transform(htmlOptions)).remove();
		}
	)
	
	// embed mp3s
	$('a.mp3').flash(
		{src: webroot+'files/mediaplayer.swf', width: 660, height: 20, flashvars: {volume: 100}}, {version: 8},
		function (htmlOptions) {
			htmlOptions.flashvars.file = $(this).attr('href');
			$(this).before($.fn.flash.transform(htmlOptions)).remove();
		}
	)
	
});