Incorporar vídeo do Youtube a partir do link com parâmetros personalizados

$.fn.linkToYoutube = function(ops) {

var o = $.extend({
width
: 480,
height
: 320,
params: ''
}, ops)

return this.each(function () {
var $link = $(this),
href
= $link.attr('href'),
id
= /?v=(w+)/.exec(href)[1],
iframe
= '<iframe style="display: block;"'+
' class="youtube-video" type="text/html"'+
' width="' + o.width + '" height="' + o.height +
' "src="http://www.youtube.com/embed/' + id + '?' + o.params +
'&amp;wmode=transparent" frameborder="0" />'
$link
.replaceWith(iframe)
})

}

Demo: http://jsfiddle.net/elclanrs/6ZS3w/