$(document).ready(function(){
//fancy para imagens
	$("a:has(img)[href$='.jpg'], a:has(img)[href$='.jpeg'], a:has(img)[href$='.gif'], a:has(img)[href$='.png'], a:has(img)[href$='.bmp']").fancybox({
		'imageScale': true,
		'padding': 10,
		'zoomOpacity': true,
		'zoomSpeedIn': 50,
		'zoomSpeedOut': 500,
		'overlayShow': true,
		'overlayOpacity': 0.3,
		'hideOnContentClick': false,
		'centerOnScroll': true
	});

//slide
$cont = 0;
$('#box-cycle div img').each(function(){
	$cont++;
});

if($cont >= 2) {//Se tiver mais de um item ative o slide
	$('#box-cycle').cycle({ 
		fx:     'fade', 
		speed:   1000, 
		timeout: 4000,  
		pause:   1, 
		next:   '#prox', 
		prev:   '#ant',
		pager:  '#numeracao'  
	});
	$('#pause').click(function() { 
		 $('#box-cycle').cycle('pause'); 
	});
	$('#prox, #ant').click(function() { 
		$('#box-cycle').cycle('resume'); 
	});
} else {//exiba a div escondida e esconda a navegação
	$('#box-cycle div').show();
	$('#ant_prox, #numeracao').hide();
}	

//submenus
	$('#nav ul').superfish({ 
		delay:       200,                            // one second delay on mouseout 
		animation:   {height:'show'},  // fade-in and slide-down animation 
		speed:       'slow',                          // faster animation speed 
		autoArrows:  false
	});

//não mostrar a categoria blog do instituto nas migalhes
if($('#header_post div p a[href*="/secao/destaque-da-home"]').text() != ''){
	$alvo = $('#header_post div p a[href*="/secao/destaque-da-home"]');
	$alvo.remove();
	$tudo = $("#header_post div p").html();
	$("#header_post div p").html($tudo.replace("&gt;  &gt;", "&gt;"));
}

//mascara de input
   $("#cf_field_5, #cf3_field_8, #cf3_field_9").mask("(99) 9999-9999");
   
}); //doc.ready
