$(function()
{
	$('#bigphoto')
	.before('<div id="bigphotonav">')
	.cycle({
        fx:			'fade',
        pause:		1,
        speed:		1000,
        timeout:	4000,
        pager:		'#bigphotonav',
        before:     onBefore,
        after:      onAfter
	});
})

function onBefore() {
    $('#caption').html("");
}
function onAfter() {
    $('#caption').html('<h3>' + this.firstChild.alt + ' &nbsp;&nbsp;<a href=' + this.href + '>read more ...</a></h3>');
}
