window.addEvent('domready', init);
var IE = Browser.Engine.trident;
function init() {
	$$('.delete').addEvent('click', function(e) {
		if (!window.confirm('Potwierdzenie spowoduje usunięcie. Kontynuować?')) {
			e.preventDefault();
		}
	});
    new Swiff(path + 'themes/ekomat/images/top.swf', {
        width: 816,
        height: 300,
        params: {
            'wmode': 'transparent',
            'bgcolor': 'ffffff',
            'quality': 'high'
        }
    }).inject($('header'));
	ReMooz.assign('#photos-list a.photogallery_album_photo_link', {
		'origin': 'img',
		'shadow': 'onOpenEnd', // fx is faster because shadow appears after resize animation
		'resizeFactor': 0.8, // resize to maximum 80% of screen size
		'cutOut': false, // don't hide the original
		'opacityResize': 0.4, // opaque resize
		'dragging': false, // disable dragging
		'centered': true // resize to center of the screen, not relative to the source element
	});
}
