$(document).ready(function() {
  $('.pics').cycle({
    fx: 'fade',
    before: function() {
      $(this).css( { left: '50%', marginLeft: -$(this).width()/2 } );
      $(this).css( { top: '50%', marginTop: -$(this).height()/2 } );
    },
  });
});
