window.addEvent('domready', function() {
	// create slideshow
	$$('div.slideshow').each(function(el){
		var f = el.getFirst('img');
		var opt = {
			width: f.get("width"),
			height: f.get("height"),
			fade: 20000,
			periodical: 5000
		}
		new Slideshow(el, opt);
	});
	// create thumbs
	$$('div.thumbs').each(function(el){
		
	});
});