/**
* svybanners.js 
*/

   window.addEvent('load', function() {
	var imgs = [];
	imgs.push({file: 'foto1.jpg', title: '', desc: '', url: '#'});
	imgs.push({file: 'foto2.jpg', title: '', desc: '', url: '#'});
	imgs.push({file: 'foto3.jpg', title: '', desc: '', url: '#'});
	imgs.push({file: 'foto4.jpg', title: '', desc: '', url: '#'});
	imgs.push({file: 'foto5.jpg', title: '', desc: '', url: '#'});
	imgs.push({file: 'foto6.jpg', title: '', desc: '', url: '#'});
	var myshow = new Slideshow('slideshow2', { 
		type: 'combo',
		externals: 0,
		showTitleCaption: 1,
		captionHeight: 45,
		width: 450, 
		height: 100, 
		pan: 50,
		zoom: 50,
		loadingDiv: 1,
		resize: true,
		duration: [2000, 9000],
		transition: Fx.Transitions.Expo.easeOut,
		images: imgs, 
		path: '/images/bannerfotos/'
	});

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