$(document).ready(function(){
	
	//## Lightbox para fotos nos produtos
	if ($('.lightbox').length > 0) {
		$('.lightbox').fancybox({
			'padding'	: '10',
			'overlayColor'	: '#000'
		});
	}
	//## Centrar verticalmente o texto na janela de competencias 
	$('.competencias_conteudo').children('.item').each(
		function(index){
			var h_item 	= $(this).height();
			var h_texto	= $(this).children('span').height();
			topo		= Math.floor((h_item-h_texto)/2)
			
			$(this).children('span').css('top', topo);
		}
	);
	
	if ($('.competencias_animacao').length > 0) {
		$('.competencias_conteudo').cycle({ 
			fx				: 'scrollHorz', 
			speed			: 'fast', 
			timeout			: 4750, 
			next			: '#competencias_frente', 
			prev			: '#competencias_tras',
			cleartypeNoBg	: 'true'
	});	
	}





});

