window.addEvent('domready', function() {
    $$('a.external').each(function(el) { 
        el.addEvent('click', function(e) { 
            e = new Event(e); 
            e.stop();     
            window.open(this.getProperty('href')); 
        }.bind(el)); 
    });
    $$('.mailto').each(function(el) {
        reArg = /mailto:(.*)/;
        textnew = reArg.exec(el.get('href'));
        if (textnew !=null) {
            text2 = '';
            for (i=textnew[1].length;i>0;i--) {
                text2 +=textnew[1].charAt(i-1);
            }
            el.set('href','mailto:'+text2);
            el.set('html',text2);
        }
            
    });
    
    if ($('tagnoscript')) {
        el = new Element('input',
            	                   {'type':'hidden',
            	                    'name':'spamNum',
            	                    'value': 0+3});
        el.inject($('tagnoscript'), 'after');
    }
    
    /*
     * Auto-complete pro vyhledávací pole
     */
    new Autocompleter.Request.JSON($('search'), '/search-autocomplete/', {
        'postVar': 'q',
        'delay'  : 0,
        'minLength' : 2,
        'firmItems': firmItems,
        markQuery: false
    });
});