/* IE6nomore
------------------------------------------------------------------------------------------------ */

$.IE6nomore = function() {

    if(!$('#ie6nomore').length)
        return;

    $('#ie6nomore').css({
        'left'      : 0,
        'top'       : 0,
        'bottom'    : 0,
        'right'     : 0,
        'position'  : 'absolute',
        'z-index'   : 9999
    });

};

/* Spam protection
------------------------------------------------------------------------------------------------ */

function getAdr(prefix, postfix, text) {
    document.write('<a href="mailto:' + prefix + '@' + postfix + '">' + (text ? text.replace(/&quot;/g, '"').replace(/%EMAIL%/, prefix + '@' + postfix) : prefix + '@' + postfix) + '</a>');
}

/* DOM
------------------------------------------------------------------------------------------------ */

$(document).ready(function() {

    // IE6nomore

    $.IE6nomore();

    // Menu

    $('#nav').menu({
        'removeTitle'   : false
    });

    // Links

    $('.link').bookmark({
        'appendTo': '.bookmark'
    });

    // Onlinetools object

    $('.onlinetool .popup').popup();

    // Holidays

    $('.holidays').removeClass('hideme');

    if ($('.holidays .marquee').width() > 441) {
        $('.holidays .marquee').marquee({
            'speed'                     : 2,
            'draggable'                 : true,
            'animateScrollDuration'     : 250,
            'animateScrollEasing'       : 'linear',
            'vertical'                  : false
        });
    }

});

