document.observe('dom:loaded', function(event) {
	$$('.fotothumb').each(function(el) {
		el.observe('click', function(event) {
			if (el.getAttribute('rel') == 'slideshare') {
				$('fotoContainer').hide();
				$('flashContainer').show();
				var myUFO = {
					movie: this.getAttribute('href').split('?')[0],
					width: '464',
					height: '412',
					majorversion: '9',
					build: '0',
					bgcolor: '#FFFFFF',
					wmode: 'opaque',
					allowfullscreen: 'false',
					flashvars: this.getAttribute('href').split('?')[1]
				};
				UFO.create(myUFO, 'flashContainer');
			} else if (el.getAttribute('rel') == 'flash') {
				$('fotoContainer').hide();
				$('flashContainer').show();
				var myUFO = {
					movie: '/swf/flvplayer.swf',
					width: '464',
					height: '412',
					majorversion: '8',
					build: '0',
					bgcolor: '#FFFFFF',
					wmode: 'opaque',
					allowfullscreen: 'false',
					flashvars: 'file='+this.getAttribute('href')+'&autostart=true&overstretch=true'
				};
				UFO.create(myUFO, 'flashContainer');
			} else {
				$('mainfoto').setAttribute('src', this.getAttribute('href'));
				$('fotoContainer').show();
				$('flashContainer').hide();
				$('flashContainer').innerHTML = '';
				$$('.lightboxLink').each(function (ll) { ll.hide(); });
				var ll = $(this.getAttribute('id')+'-icon')
				if (ll) { ll.show() };
			}
		});
	});
});

