$(document).ready(function() {
	$('#photo_gal_cycler').hover(
		function() { $('.slideshow').cycle('pause'); },
		function() { $('.slideshow').cycle('resume'); });
    $('.slideshow').cycle({
       fx:     'scrollHorz',
       speed:  'slow',
       timeout: 8000,
       next:   'a#photo_btn_next',
       prev:   'a#photo_btn_pre',
       pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '.nav_banner_marks li:eq(' + (idx) + ') a';
        }
	});
});	

