// image fade slideshows
$(document).ready(function() {
    $('#picture-box ul').cycle({
		fx: 'fade',
		timeout: '3500',  // milliseconds between slide transitions (0 to disable auto advance)
		speed: '2000'  // speed of the transition (any valid fx speed value) 
	});
});
