	$(function() {
			$('#show').find('img').each(function(){
				this.style.display = 'block';
			});
			document.getElementById('eyecatcher').style.display = 'block';
			$('#show').cycle({
				fx:     'fade',
				timeout: 7000,
				pager:  '#nav',
				pagerEvent: 'mouseover',
				pauseOnPagerHover: '1',
				pagerAnchorBuilder: function(idx, slide) {
					// return sel string for existing anchor
					return '#nav li:eq(' + (idx) + ') a';
				}
				
			});
	});




