﻿function openMenuPopup(url) {
    window.open(url, 'BSTilmeld', 'resizable=no,toolbar=no,scrollbars=no,menubar=no,location=no,status=yes,width=375,height=500');
    return void (0);
}

function openMenuWindow(url) {
    window.open(url, '_new');
    return void (0);
}

$(document).ready(function() {
    $('#topmenu').find('a').each(function() {


    span = $(this).children('span').first();
    if ($(this).attr('id') != 'activeitem')
        span.hover(
            function() {
                img = $(this).prev('img');
                img.attr('src', img.attr('onmouseover'));
            },
            function() {
                img = $(this).prev('img');
                img.attr('src', img.attr('onmouseout'));
            });

    });
});