jQuery(document).ready(function(){
	//$('#tabzine > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	jQuery(".glidecontent").hover(function() {
		jQuery(this).children(".glidemeta").animate({opacity: "show"}, "slow");
	}, function() {
		jQuery(this).children(".glidemeta").animate({opacity: "hide"}, "fast");
	});
	
	//ESCONDE AS ABAS
	jQuery(".tabdiv").hide();
	
	//EXIBE A PRIMEIRA
	jQuery("#destaque").show();
	jQuery("#1").addClass("ui-tabs-selected");
	
	//SELECIONA A ABA
	jQuery(".aba").click(function(){
		//RECUPERA A ABA CLICADA
		var pAbaFinal = $(this).attr("rel").substring(1,$(this).attr("rel").length);
		
		//ESCONDE AS ABAS
		jQuery(".tabdiv").hide();
		
		//REMOVE A CLASSE
		jQuery(".aba").parent().removeClass("ui-tabs-selected");
		
		//ADICIONA A CLASSE
		$(this).parent().addClass("ui-tabs-selected");
		
		//MOSTRA A ABA ESCOLHIDA
		jQuery("#" + pAbaFinal).show();
		
		//EXIBE A ABA ATUAL
	});
	
	
});

jQuery(function(){
	jQuery("#divulguebox").hide();
	jQuery('.arqAno').find("ul").hide();	
	jQuery('.arqAno').click(function(){
		$(this).find("ul").slideToggle();					 
	});
	jQuery("#singletools").find("a").click(function(){
		if($(this).parent().hasClass("divulgue")){
			jQuery("#divulguebox").slideToggle();
		}//FECHA IF
	});
});

<!-- CONFIGURACAO DO ADDTHIS -->
var addthis_config = {
     ui_language: "pt",
	 ui_cobrand: "CineNews",
	 ui_header_color: "#FFFFFF",
	 ui_header_background: "#B14C30"
};
var addthis_localize = {
    share_caption: "Compartilhe"
}; 