	$(function() {
  $('#slideshow').cycle({
		fx:'fade',
		timeout:  5000,
		after:   onBefore
	});
   function onBefore(curr, next, opts) {  
	$('#main')
		.css('backgroundImage', 'url('+next.src+')');
    };
});