$(function(){
		   
	$('#imoveisDestaques .destaquesBox').after('<ul id="navDestaque">').cycle({
		fx: 'fade',
		speed: 1000,
		timeout:  3000,
		pager:  '#navDestaque',
		
		// callback fn that creates a thumbnail to use as pager anchor
		pagerAnchorBuilder: function(idx, slide) {
			return '<li><a href="#"><img src="' + $(slide).find("img").attr("src") + '" width="50" height="37" /></a></li>';
			}
		});
	
	});