$(document).ready(function(){
	
	// hdr_team
	$( '.hdr_team .curp' ).toggle(function() {
		$( '.hdr_team_photo' ).fadeIn();
	}, function(){
		$( '.hdr_team_photo' ).fadeOut();
	});

	// fancybox popup style
	$(".popup_open").fancybox({
		'titlePosition'		: 'none',
		'transitionIn'		: 'elastic', // 'fade' , 'none'
		'transitionOut'		: 'elastic' // 'fade' , 'none'
	});

});

