// JavaScript Document

// Fancybox
$(document).ready(function() {
	// Foto
	$(".foto-fancybox").fancybox({
		'titleShow'		: false
	});
	
	// Newsletter
	$(".newsletter-fancybox").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'autoScale'     	: false,
		'type'				: 'iframe',
		'width'				: 340,
		'height'			: 440,
		'scrolling'   		: 'no'
	});
	
	// Vídeo
	$(".video-fancybox").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'autoScale'     	: false,
		'type'				: 'iframe',
		'width'				: 495,
		'height'			: 435,
		'scrolling'   		: 'no'
	});
});
