$(function() { 
 $('#snapshot').cycle({
  delay: 2000,
  speed: 500,
  pause: true,
  before: onBefore	
 });
 function onBefore() { 
 $('#title') 
  .html(this.alt); 
 };
});
