slidesHome = function() {
    	$('.slide-destaque-home').cycle({
			fx:'fade',
  		timeout:5000,
    		speed:500,
    		before: function() {
                  $.metadata.setType("attr", "data");
                  $('.destaque-home-chamada h2').html('<a href="'+$(this).find('img').metadata().url+'">'+$(this).find('img').metadata().titulo+'</a>');
                  $('.destaque-home-chamada p').html('<a href="'+$(this).find('img').metadata().url+'">'+$(this).find('img').metadata().chamada +'</a>');
	  		}
    	});
    
    
    $('.fotos-videos-slide').cycle({
               fx:'fade',
               timeout:0,
               prev : '.anterior',
               next : '.proxima',
               speed:500,
               after: function() {
                   $('.legenda-fotos').html($(this).find('img').attr('alt'));
               }
    });
}