$(document).ready(function(){
    $(".fancybox").fancybox({
        'transitionIn'	:	'elastic',
        'transitionOut'	:	'elastic',
        'speedIn'	:	600,
        'speedOut'	:	200,
        'width'         :       800,
        'height'        :       450,
        'centerOnScroll':       'true',
        'overlayShow'	:	true
    });
	
	$(".galeriasimagenes").fancybox({
        'transitionIn'	:	'elastic',
        'transitionOut'	:	'elastic',
        'speedIn'	:	600,
        'speedOut'	:	200,
        'width'         :       800,
        'height'        :       450,
        'centerOnScroll':       'true',
        'overlayShow'	:	true
    });

    $(".presentacion_youtube").click(function() {
        $.fancybox({
            'padding'		: 0,
            'autoScale'		: true,
            'transitionIn'	: 'none',
            'transitionOut'	: 'none',
            'title'		: this.title,
            'width'		: 800,
            'height'		: 450,
            'centerOnScroll'    : 'true',
            'href'		: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
            'type'		: 'swf',
            'swf'		: {'wmode' : 'transparent', 'allowfullscreen' : 'true'}
        });

        return false;
    });
});
