$(function() {
    $('#slideshow').cycle({
	    fx:    'scrollRight', 
        speed:       300,
        timeout:     5000,
        pager:      '#nav',
        pagerEvent: 'mouseover',
        allowPagerClickBubble: true,
		pagerAnchorBuilder: function(i, el) {
			return '<a href="' + el.href + '">' + (i+1) + '</a>';
    	}
    });
});
  

