$(document).ready(function() {
  $("a.thumbnail").fancybox();

  $("a.video").click(function() {
      $.fancybox({
        'padding' : 0,
        'autoScale' : false,
        'title' : this.title,
        'width' : 680,
        'height' : 495,
        'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
        'type' : 'swf',
        'swf' : {
            'wmode' : 'transparent',
            'allowfullscreen' : 'true'
        }
    });
    return false;
  });

  $(".news-article a.postlink img").parent("a.postlink").fancybox();
  
});
