jQuery(this).find('iframe').each(function() {
	var src = jQuery(this).attr('src');
	jQuery(this).attr('src',src + '&amp;wmode=transparent');
});
jQuery(this).find('iframe').each(function() {
	var src = jQuery(this).attr('src');
	jQuery(this).attr('src',src + '&amp;wmode=transparent');
});

jQuery('iframe').each(function(){
      jQuery(this).attr('src',jQuery(this).attr('src')+'?wmode=transparent');
})

jQuery(function(){
	jQuery("param[value^='youtube']").after('<param name="wmode" value="transparent" />');
	jQuery("embed[src^='youtube']").attr("wmode","transparent");
});
