$(document).ready (function() {
   $("#content a[href$=\\.jpg], #content a[href$=\\.png").fancybox();
   $("a.video-a.youtube").click(function() {
      $.fancybox({
         'padding'       : 10,
         'autoScale'     : false,
         'transitionIn'  : 'none',
         'transitionOut' : 'none',
         'title'         : this.title,
         'width'         : 680,
         'height'        : 495,
         'href'          : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1&rel=0',
         'type'          : 'swf',    // <--add a comma here
         'swf'           : {'wmode' : 'transparent', 'allowfullscreen':'true'} // <-- flashvars here
      });
      return false;
   });
   $("a.video-a.vimeo").click(function() {
       $.fancybox({
          'padding'       : 10,
          'autoScale'     : false,
          'transitionIn'  : 'none',
          'transitionOut' : 'none',
          'title'         : this.title,
          'width'         : 680,
          'height'        : 495,
          'href'          : this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
          'type'          : 'swf',    // <--add a comma here
          'swf'           : {'wmode' : 'transparent', 'allowfullscreen':'true'} // <-- flashvars here
       });
      return false;
   }); 
});

