$(document).ready(function() {
  $.fn.cycle.defaults.speed   = 900;
  $.fn.cycle.defaults.timeout = 6000;
  
  $(".bigimage").cycle({
			fx:     'fade',
			speed:  'slow',
			timeout: 0,
			next:   '#next',
			prev:   '#prev'
  });
  
  $(".bigimage_partners").cycle({
			fx:     'scrollLeft',
			speed:  'slow',
			timeout: 2000
  });
  
});
