$(function() {
	$('#slideshow').before('<ul id="nav">').cycle({
	fx:     'turnLeft',
	speed:  'slow',
	timeout: 5000,
	after:	onAfter,
	pager:  '#nav',
	pagerAnchorBuilder: function(idx, slide) {
		return '<li><a href="#"><img src="' + slide.src + '" width="60" height="40" alt="Thai food gallery" /></a></li>';}
	});
});

function onAfter() { 
$('#caption').html('<h3>' + this.alt + '</h3>'); 
}
