/**
 * Zoom für Bilder
 */
ReMooz.assign('.remooz', {
    'origin': 'img',
    //'shadow': 'onOpenEnd', // fx is faster because shadow appears after resize animation
    'shadow': 'onOpen', // 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': true, // disable dragging
    'centered': true // resize to center of the screen, not relative to the source element
});

var tips = new Tips( '.hilfe', {
    className:'hilfe',
    offsets: {x: 20, y: 20}
});

$$('a.extern').each(function(link){
    link.set('target','_blank');    
});

