$(document).ready(function(){
    // PNG FIX
	$(document).pngFix();	
		 $('span.desc2').hide()
		 $('span.desc').hide()
														   
		   $('a.aparecer').hover(function () {
				$(this).next('span').fadeIn();
			}, function () {
				$(this).next('span').fadeOut();
		  });
	
	// CYCLE
	$('#destaqueCycle').cycle({
	  fx: 'fade',
	  timeout: 5000,
	  speed: 300,
	  pager:  null,
	  after: function() { if (window.console) console.log(this.src); }
	});
	
	
});
