//front page image slideshow
$(function() {
    $('#front_images').cycle({
      pause: 1,
      before: onBefore
    });
    
    function onBefore() { 
      $('#front_image_title').html('<a href="' + this.href + '">' + this.title + '</a>');
    }
});