jQuery(document).ready(function(){
	$('iframe').each(function(){
		var url = $(this).attr("src");
		if(url && url.indexOf("youtube.com") > -1){
			if(url.indexOf("?") > -1){
				$(this).attr("src",url+"&wmode=transparent")
			}else{
				$(this).attr("src",url+"?wmode=transparent")
			}
		}
	});
});
