$(function() {

	$('#slideshow').after('<div id="nav" class="nav">').cycle({
		fx:     'fade',
		speed:  1000,
		timeout: 4500,
		pager:  '#nav',
		next: null,
		prev: null,
		before: onBefore,
		continous: true
	});
	
	function onBefore() {
		$('a#current-case').html(this.id);
		$('a#current-case').attr('href', this.alt);
	}
});

