// http://fancybox.net/api

jQuery(document).ready(function() {

	$(".certificate").fancybox({
		'width'				: '75%',
		'height'			: '95%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'overlayOpacity'	: 0.6,
		'overlayColor'		: '#575757',
		'showCloseButton'	: true
	});
	
	$(".bin_img_big").fancybox({
        'autoScale'     	: true,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'image',
		'overlayOpacity'	: 0.6,
		'overlayColor'		: '#575757',
		'showCloseButton'	: true
	});

});



