/* HOMEPAGE SLIDER */
$(function() {
    $('#homepage_slider')
	.cycle({
        fx:     'fade',
    	speed:  'slow',
    	timeout: 7000,
    	next:   '.feature_next',
    	prev:   '.feature_prev',
        pager:  '.feature_nav',
		pagerAnchorBuilder: function(index, el) {
        return '<a href="#">&nbsp;</a>'; //hides text
 		}
    });
});


