jQuery(function ($) {
$(document).ready(function(){  

	$('#featured') 
	.cycle({ 
		fx:     fx,
		timeout: timeout, 
		speed: transitionspeed,
		pager:  '#nav-featured',
		pagerAnchorBuilder: function(index, el) {
        return '<a href="#"> </a>'; // whatever markup you want
    }	
	});
	
	
})
});
