	$(document).ready(function(){
		$('a[@href^="http://youtube.com"]').flash(
			{ height: 370, width: 450 },
			{ version: 8 },
			function(htmlOptions) {
				$this = $(this);
				htmlOptions.src = $this.attr('href');
				$this.before($.fn.flash.transform(htmlOptions));						
			}
		);
	});
