/*
 *	YouTube Iframe Embed WMode Fix
 *
 *	Author:	Collin Klopfenstein <cklopfenstein@curse.com>
 *
 *	http://www.curse.com
 */

$(function () {
	$('iframe').each(function() {
	    var $e  = $(this),
	        url = $e.attr('src');

	    if (url) {
	        if (url.search(/youtube/i) > -1) {
	            $e.attr('src',url+(url.indexOf('?') > -1 ? '&' : '?')+'wmode=transparent');
	        }
	    }
	});
});
