$(document).ready(function() {
    $('#slider-box').cycle({ 
        fx:     'fade', 
        speed:   500, 
        timeout: 2000, 
        pager:  '#slider-nav', 
        before: function() {  
            $('#caption').html(this.alt); 
        } 
    }); 
	  $('#people-slider').cycle({ 
        fx:     'fade', 
        speed:   500, 
        timeout: 6000, 
        pager:  '#people-nav', 
        before: function() {  
            $('#caption').html(this.alt); 
        } 
    }); 
	  
	   $('#agenda-slide').cycle({ 
        fx:     'fade', 
        speed:   500, 
        timeout: 2000000, 
        pager:  '#agenda-nav', 
        before: function() {  
            $('#caption').html(this.alt); 
        } 
    }); 

$(function() {
  $('.email').each(function() {
     var $email = $(this);
     var address = $email.text()
        .replace(/\s*\[at\]\s*/, '@')
        .replace(/\s*\[dot\]\s*/g, '.');
     $email.html('<a href="mailto:' + address + '">'
        + address +'</a>');
  });
});

});

