$(document).ready(function() {
    var maxHeight = 0;
    $('ul.testimonial-list li').children().each(function(i){
        if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }
    });
    $('ul.testimonial-list').height(maxHeight + 36);
    $('ul.testimonial-list').cycle({
        timeout: 10000
    });
    
    //TWITTER FEED
    
    $(".tweets").tweet({
      join_text: "auto",
      username: "TJatCAMPUSPEAK",
      count: 1,
      loading_text: "loading latest tweet...",
      template: '<em>{time}</em><br />{text}<br /><br />Follow <em>{user}</em>'
    });
    
});

