// JavaScript Document

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


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