$(document).ready(function() {
      $("a.popup").fancybox(
      {
             'hideOnContentClick': false,
             'width':680,
             'height':385,
             'overlayOpacity': 0.8}
      );
      $("a.inline").fancybox(
      {
             'type': 'iframe',
             'hideOnContentClick': false,
             'autoDimensions': false,
             'width':780,
             'height':560,
             'scrolling': 'auto',
             'overlayOpacity': 0.8}
      );
      $("a.lightbox").fancybox(
      {
             'titleShow': false,
             'zoomSpeedIn': 300,
             'zoomSpeedOut': 300,
             'overlayShow': true,
             'overlayOpacity': 0.8}
     );
     $("a.video").fancybox(
     {
             'type': 'iframe',
             'hideOnContentClick': false,
             'overlayOpacity': 0.8,
             'width':680,
             'height':385
    }
      );
      
      $(".trcontent a").fancybox(
      {
             'type': 'iframe',
             'hideOnContentClick': true,
             'width':680,
             'height':385,
             'overlayOpacity': 0.8}
      );
      
}); 
