﻿$(document).ready(function () {


    $("a#GMFancyBox").fancybox({
        'padding': 1,
        'zoomSpeedIn': 300,
        'zoomSpeedOut': 300,
        'overlayShow': true,
        'transitionIn': 'elastic',
        'transitionOut': 'elastic'
    });
  
  

$(".gmvideo").click(function() {

        $.fancybox({
            'padding'       : 1,
          'autoScale'     : false,
        'transitionIn': 'elastic',
          'transitionOut': 'elastic',
        'zoomSpeedIn': 300,
        'zoomSpeedOut': 300,


            'title'         : this.title,
            'width'         : 680,
            'height'        : 495,
            'href': this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&hd=1&fs=1&modestbranding=1&autoplay=1&rel=0',
            'type'          : 'swf',
            'swf'           : {
            'wmode'             : 'transparent',
            'allowfullscreen'   : 'true'
            }
        });
        return false;
    });













});

