$(function() {

	$('#ovr_nav').hover(
		function() { $('#slideshow').cycle('pause'); },
		function() { $('#slideshow').cycle('resume'); });

    $('#slideshow').cycle({
      fx:      'scrollDown', 
    speedIn:  1000, 
    speedOut: 500, 
    easeIn:  'bounceout', 
    easeOut: 'backin', 
    delay:   1000,
        pager:  '#nav',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#nav div:eq(' + (idx) + ') a';
        }
    });
		
});

