YUI({
	modules : {
		'slideshow' : {
			fullpath : '/js/yui-slideshow.js',
			requires: ['anim']
		}
	}
}).use('slideshow', function(Y){
	new Y.Slideshow('#slideshow-container', {
		duration: 1.0,
		interval: 7000
	});
	
	Y.all('#slideshow-container img').setStyle('display', 'block');
});
