$(document).ready(function() {
    $('#navi #main li a').hover(
        function() {
            $(this).parent('li').addClass('actIE');
        },
        function() {
            $('#navi #main li.actIE').removeClass('actIE');
        }
    );

    $('ul.sf-menu').superfish({ 
        delay:       500,                            // one second delay on mouseout 
        animation:   {opacity:'show',height:'show'}, // fade-in and slide-down animation 
        speed:       'fast',                         // faster animation speed 
        autoArrows:  false,                          // disable generation of arrow mark-up 
        dropShadows: true                            // disable drop shadows 
    }); 

    /* E-Mails umwandeln: <a href="mailto:box [at-no-spam] server.tld">title</a> */
    $('a[href^=mailto]').each(function(){
        var to_replace = '=at-no-spam=';
        var link       = $(this).attr('href').replace(to_replace, '@');
        var address    = $(this).html().replace(to_replace, '@');

        $(this).html(address);
        $(this).attr('href', link);
    });
});



