$(document).ready(function(){
	if (true) {
		$('#slideshow').cycle({ 
			fx:     'fade', 
			speed:  'slow', 
			timeout: 0,
			pager:  '#nav', 
			pagerAnchorBuilder: function(idx, slide) { 
				// return selector string for existing anchor 
				return '#nav li:eq(' + idx + ') a'; 
			} 
		});
	}
});
