/**
 * Projeto
 * @author cleo47@gmail.com
 * data
 */


$(function() {


$('#eventos-img-wrapper a').click(function(){
	var img = new Image();
	$(img)
		.load(function () {
			var previousImage = $('#eventos-slider img');
			$('#eventos-slider').append(this);
			$(this).hide(100);
			previousImage.hide(300);
			$(this).show(500);
		})
		.attr('src', $(this).attr('href'));
	return false;
});

//________________________________________________________________________.
});
