$(document).ready(function(){
	$('#rail-images').cycle({ 
	    fx:     'fade',
		speed:       150, 
		timeout:     1500,
		autostop: 1,
		slideExpr: 'img',
	    pager:  '#leadspot', 
	    pagerAnchorBuilder: function(idx, slide) { 
	        // return selector string for existing anchor 
	        return '#leadspot li:eq(' + idx + ') a'; 
	    },
		pagerEvent: 'mouseover',
		fastOnEvent: true,
		after:   onAfter
	});
	function onBefore() { 
	} 
	function onAfter() { 
	    $('#sectionTitle').html('<h3>' + this.alt + '</h3>'); 
		var $a = $(this).parent();
		var href = $a.attr('href');
		$('#sectionDescription').html('<p><a href="' + href + '">' + this.title + '</a></p>'); 
	} 
});
