// JavaScript Document

$(function() { 
    $('#slider').cycle({ 
        fx:     'fade', 
        speed:   500, 
        timeout: 5000,
		pause: 1, 
		
       pager:  '#slider-nav', 
	   pagerAnchorBuilder: function(index, el) {
        return '<a href="#"> </a>'; // whatever markup you want
	   }
        
        //before: function() {  
          //  $('#caption').html(this.alt); 
       // } 
    }); 
}); 
