$(document).ready(function() {
    $('#page_slider_inner').cycle({
		fx:     'scrollHorz',
		
		speed: 800, 
		
    prev:   '#prev', 
    next:   '#next', 
	timeout: 12000,
	pause: 1,
	    
	
	pagerAnchorBuilder: function(index, el) {
        return '<a href="#"></a>'; // whatever markup you want
    }
	});
});

