$(document).ready(function(){
    $('a[href^="http://www.youtube.com/watch"]:not(.dont-embed), a[href^="http://youtube.com/watch"]:not(.dont-embed)').each( function(){
        if($(this).hasClass('smaller-video')) {
          nWidth  = 400
          nHeight = 245
        } else {
          nWidth  = 480
          nHeight = 295
        }
        $(this).flash(
          { width: nWidth, height: nHeight },
          { version: 8 },
          function(htmlOptions) {
              aLink = $(this).attr('href').split("v=")
              href = aLink[1]
              htmlOptions.src = "http://youtube.com/v/" + href;
              $(this).parent().css("text-align","center")
              $(this).css("display","block")
              $(this).css("text-align","center")
              $(this).before($.fn.flash.transform(htmlOptions));
          }
        );
    })
});