// image fade slideshows
$(document).ready(function() {
    $('#animation ul').cycle({
		fx: 'fade',
		timeout: '4500',  // milliseconds between slide transitions (0 to disable auto advance)
		speed: '1500',  // speed of the transition (any valid fx speed value)
		random: 1
	});
});
