$(document).ready(function() {
  $('#header_slideshow').cycle({
    fx: 'fade',
    timeout: 8000,
    speed: 1500
  });
  
  $("#tweets").tweet({
      username: "cruiseweek",
      count: 3,
      loading_text: "Loading tweets...",
      template: function(info) {
        return info["text"] + info["time"];
      }
  });
});
