$(function(){
	
	$("#box-noticias .abas a").click(function() {
											  
		$("#box-noticias .abas a").removeClass("ativo");
		$(this).addClass("ativo");
		
		var filtro = $(this).parent().attr('class');
		
			$.ajax({
				type: "GET",
				url: "/ajax/noticias_lidas.asp",
				data: { filtro: filtro },
				async: true,
				cache: true,					
				success: function(resposta){
					$("#box-noticias  .box-conteudo").empty().html(resposta);
				}
			});
			
		return false;
		
	});
		
});
