$(document).ready(function(){
	$('.noticia').mouseover(function(){
		clearTimeout(this.timeout);
		$(this).addClass("over");
	}).mouseout(function(){
		var that = this;
		this.timeout = setTimeout(function() {
			$(that).removeClass("over");
		}, 600);
	});

	$('.trim > div:last-child').add('.trim > li:last-child').add('.trim > td:last-child').css('border','0');
});

function fade() {
	var img = $('#aldf img');
	var speed = 2000;

	$(img[0]).fadeOut(speed, function() {
		$(img[1]).fadeOut(speed, function() {
			$(img[3]).fadeIn(speed, function() {
				$(img[4]).fadeIn(speed, function() {
					$(img[5]).fadeIn(speed, function() {
						$('#aldf img').css('display','block')
						$('#aldf img.fadeIn').css('display','none');
						fade();
					});
				});
			});
		})
	});
};

