$(document).ready(function() {

	$("a.imagelink").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
        'cyclic'        :   true,
        'titlePosition' :   'inside',
	});

    $("a.videolink").click(function() {
	    $.fancybox({
			    'padding'		: 0,
			    'autoScale'		: false,
			    'transitionIn'	: 'none',
			    'transitionOut'	: 'none',
			    'title'			: this.title,
                'titleShow'     : false,
                'titlePosition' : 'hide',
			    'width'		    : 680,
			    'height'		: 495,
			    'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			    'type'			: 'swf',
			    'swf'			: {
			   	    'wmode'		        : 'transparent',
				    'allowfullscreen'	: 'false'
			    }
		    });

	    return false;
    });
	
    $("a.pedigreelink").fancybox({ 
        'titleShow'     : false, 
        'transitionIn'  : 'fade', 
        'transitionOut' : 'fade',
    }); 

});

