// JavaScript Document

/*!  * SHS Carousel Panel controls 01  */

	var J = jQuery.noConflict();
		J(function() {
   	    J('#NTH_OxfamPromoS1').cycle({
  	    fx:      'scrollDown',
        speed:    2000,
        timeout:  1000
        });
        });



J(document).ready(function() {
J('#SHSCarousel01') 
.cycle({ 
    fx:     'scrollHorz', 
    speed:  1000, 
    timeout: 0, 
		after:   onAfter,
		prev:    '#prev_Panel01',
    next:    '#next_Panel01',
    pager:  '#SHSPager_Panel01',
		pagerAnchorBuilder: function(idx, slide) {
            return '<a href="#"></a>';
        }
	
		
});
	 
function onAfter(curr, next, opts) {
    var index = opts.currSlide;
    J('#prev_Panel01')[index == 0 ? 'hide' : 'show']();
    J('#next_Panel01')[index == opts.slideCount - 1 ? 'hide' : 'show']();
}
	 
});

