// JavaScript Document

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