			window.RokSlideshowPath = '';

			var myshow;
			window.addEvent('load', function(){
				var imgs = [];


				imgs.push({
					file: 'bogota.png',
					title: 'Nos trasladamos: pronto más noticias',
					desc: 'Debido al POT, Cantares tendra un nuevo lugar donde compartir tantas aventuras.',
					url: '#'
				});


				myshow = new Slideshow('slideshow', { 
					type: 'combo',
					showTitleCaption: 1,
					captionHeight: 45,
					width: 480, 
					height: 275, 
					pan: 50,
					zoom: 0,
					loadingDiv: 1,
					resize: true,
					duration: [2000, 9000],
					transition: Fx.Transitions.Expo.easeOut,
					images: imgs, 
					path: 'slide/'
				});

				myshow.caps.h2.setStyles({
					color: '#fff',
					fontSize: '16px'
				});
				myshow.caps.p.setStyles({
					color: '#ccc',
					fontSize: '14px'
				});
			});