$(document).ready(function()
    {
		$('#index_mainphoto').cycle({fx:    'fade', speed:  1000,	timeout: 7000,sync: 1,		 pager:      '#splash_nav', pagerEvent: 'click',pauseOnPagerHover: true,fastOnEvent: true});

	function onBefore() { 
	    $('.splash_caption')
			.hide(); 
	}
	
	function showCaption(){
		$('.splash_caption')
			.show();
	}
					
	$("#index_icons a").hover(
			function(){
				var spnavtarget = $(this).attr("rel");
					$('#splash_nav a:eq('+spnavtarget+')').trigger('click');
					showCaption();
				},
			function() { 
			    $('.splash_caption').hide(); 
				}
		);
	
});