$(document).ready(function(){

// set up the slideshow
$('#gallerySlides')
.cycle({
    fx:     'fade',
    speed:  880,
    timeout: 5500,
    pager:  '#galleryNav'
    });
// stop the slideshow with any nav link clicked
$('#galleryNavWrap').not('.stopped').find('a').click(function(){
$('#gallerySlides').cycle('pause');
$('#galleryNavWrap').addClass('stopped');
return false;
});

// next arrow
 $('a#nav1').click(function(){
 var nextClick = $('#galleryNav a.activeSlide').next('a');
 $(nextClick).click();
 return true;
 })
// back arrow
 $('a#nav0').click(function(){
 var prevClick = $('#galleryNav a.activeSlide').prev('a');
 $(prevClick).click();
 return true;
 })
//end jQuery
});
