
/* - ++resource++muething.theme.javascript/youtube.js - */
(function($) {
  $(function() {
      $('.youtube').each(function() {
          target = $(this).find('a'); 
          movie = target.attr('href');
          movie = movie.substring(movie.search("=")+1);
          url = "http://www.youtube-nocookie.com/v/" + movie;
          url += "?rel=0&autoplay=0&color1=0xd0d0d0&color2=0xe0e0e0&fs=1";
          flashembed(this,url);
      });
  });
})(jQuery);


