// Front page JQuery Cycle plugin

(function ($) {
   
   $(document).ready(function() {
      
      $("#features-large").cycle({
         fx: 'fade',
         speed: 1000,
         timeout: 5000,
         prev: '#feature-prev',
         next: '#feature-next'
      });
      
   });
   
})(jQuery);

