$(function() {
	$('#prev').show();
	$('#next').show();
	
	$('#slideshow').parent().append('<p id="CaptionImg">&nbsp;</p>');
	
	$('#slideshow').cycle({
		fx: 'fade',
		timeout: 0,
		height: 'auto',
		prev: '#prev',
		next: '#next',
		pager: '#ListImg',
		pagerAnchorBuilder: pagerFactory,
		before: function() {
			$(this).parent().height($(this).outerHeight());
		},
		after: function() {
			$('#CaptionImg').html(this.alt);
		}
	});
	
	function pagerFactory(idx, slide) {
		return '<li><a href="#"><img src="/contents/images/img_bott.png" border="0" width="14" height="14" alt="" title="" /></a></li>';
	};
});

