$(document).ready(function(){
  $("a.fancybox_video").click(function() {
     $.fancybox({
      'padding' : 0,
      'autoScale'   : false,
      'transitionIn' : 'elastic',
      'transitionOut' : 'elastic',
      'title'   : this.title,
      'width'   : 680,
      'height'  : 495,
      'href'    : this.rel == 'youtube' ? 'http://youtube.com/'+this.href.replace(new RegExp(".*[?&]v=", "i"), 'v/') : this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
      'type'    : 'swf',
      'swf'     : {'allowfullscreen':'true'}
      });
     return false;
  });
});
