$(function() {
	$('#slideshow img').each(function () {
		//var caption = $(this).attr('alt').split(",",2);
		//$(this).wrap('<div></div>').after('<p class="caption"><strong>'+caption[0]+'</strong>, '+caption[1]+'</p>');
		$(this).wrap('<div></div>').after('<p class="caption">'+$(this).attr('alt')+'</p>');
	});
	$('#slideshow .inner').cycle()
});
