// JavaScript Document
$(document).ready(function() {
      $('#hm-slides').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		random: false, // true for random, false for sequence (not applicable to shuffle fx) 
		pause: true,
		delay: 1000,
		speed: 2000  // speed of the transition (any valid fx speed value) 
		});
	});

