$(document).ready(function() {
  
  //--- Fotoalbum fancybox ---  
  $("a.fancyBox").fancybox();
  
  //--- Video fancybox ---
  $(".playvideo").click(function() {
    $.fancybox({
      'padding'        : 0,
      'autoScale'      : false,
      'transitionIn'   : 'none',
      'transitionOut'  : 'none',
      'title'          : this.title,
      'width'          : 840,
      'height'         : 500,
      'href'           : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
      'type'           : 'swf',
      'swf'            : {
      'wmode'          : 'transparent',
      'allowfullscreen': 'true'
      }
    }); 

  return false;
  });      
 
}); 

