window.addEvent('domready', function() {
	
	SqueezeBox.assign($$('a.boxed'), {
		parse: 'rel'
	});
	
	var count = 0;
	$$('div#slideshow img').each(function(e) {
		e.fade('hide');
		count++;
	});
	var slideshow_p = count;
	var slideshow_i = 1;
	$('picture'+slideshow_i).set('opacity', 1);
	var slideshow = (function() {
		$('picture'+slideshow_i).get('tween', { property: 'opacity', duration: '2000ms' }).start(0);
		if (slideshow_i == slideshow_p)
			slideshow_i = 1;
		else
			slideshow_i++;
		$('picture'+slideshow_i).get('tween', { property: 'opacity', duration: '2000ms' }).start(1);
	});
	slideshow.periodical(5000);
	
});