function doVoid()
{}

$(function() {
    var delay = 400;
    
    function hideMenu() {
        if (!$('.custom_button').data('in') && !$('.hover_menu').data('in') && !$('.hover_menu').data('hidden')) {
            $('.hover_menu').fadeOut('fast');
            $('.custom_button').removeClass('active');
            $('.hover_menu').data('hidden', true);
        }
    }
    
    $('.custom_button, .hover_menu').mouseenter(function() {
        $('.hover_menu').fadeIn('fast');
        $('.custom_button').addClass('active');
        $(this).data('in', true);
        $('.hover_menu').data('hidden', false);
    }).mouseleave(function() {
        $(this).data('in', false);
        setTimeout(hideMenu, delay);
    });    
    
});

function setWheel(divname)
{
    obj = document.getElementById(divname);
    if (obj)
    {
        obj.innerHTML = "<img src='/pix/indicator.gif'>";
    }
}

function showSearchFilterCrafts(param)
{
    obj = document.getElementById("verbandlist");
    obj.style.display="none";
    obj = document.getElementById("craftlist");
    obj.style.display="none";
    if (param == 1)
    {
        obj = document.getElementById("craftlist");
        obj.style.display="";
    }
    if (param == 2)
    {
        obj = document.getElementById("verbandlist");
        obj.style.display="";
    }
}

