var $j = jQuery.noConflict();
$j(function(){
	$j('#lesson .youtube').each(function () {
			var movie_id = $j(this).find("input[name=movie_id]").val();
			if (movie_id.length) {
				$j(this).html('').flash(
					{ src: 'http://www.youtube.com/v/' + movie_id,
						width: 426,
						height: 240,
						wmode: "transparent" },
					{ expressInstall: true }
				);
			}
	});
});

