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();
        }
    });
    $$('a').each(function(item) {
        if (item.get('href') && item.get('rel') == 'external') item.set('target', '_blank');
    });
    var myTips = new Tips('#panel-last-seen img', {
        'text': function(el) {
            return el.get('alt');
        },
        'className': 'tooltip'
    });
    myTips.addEvent('show', function(tip) {
        tip.set('opacity', 0.25);
        tip.fade('in');
    });
    ReMooz.assign('#table-file table + a', {
        '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
    });
    banners750x100();
}