$(function()
{
	$('#splashpics').cycle({
        delay: 2000,
        speed: 500,
		timeout: 9000, 
		next:   '#next', 
		prev:   '#prev',
        before: onBefore
    });

    function onBefore() {
        $('#splashcontent').html(this.alt);
    }
});
