$(document).ready(function() {
	$("a.group").fancybox({
		'speedIn':		300,
		'speedOut':	300,
		'overlayColor':	'#000',
		'overlayOpacity':	0.7
	});
});
$(document).ready(function() {
$("a.video_link").click(function() {
        	$.fancybox({
		'overlayColor':	'#000',
            	'padding'       : 0,
            	'autoScale'     : true,
                'autoDimensions' : true,
                'transitionIn'  : 'none',
            	'transitionOut' : 'none',
           	'title'         : this.title,
            	'href'          : this.href,
            	'type'          : 'swf',
          	'swf'           : {
            	'wmode'             : 'transparent',
           	'allowfullscreen'   : 'true'
            	}
       		});
       		return false;
   		});

});
