﻿var obj = null;

function checkHover() {
    if (obj) {
        obj.find('ul').fadeOut('fast');
    } //if
} //checkHover

$(document).ready(function() {
    $('#NavHaut > li').hover(function() {
        if (obj) {
            obj.find('ul').fadeOut('fast');
            obj = null;
        } //if

        $(this).find('ul').fadeIn('fast');
    }, function() {
        obj = $(this);
        setTimeout(
			"checkHover()",
			0); // si vous souhaitez retarder la disparition, c'est ici
    });
});


function visibility(thingId) {
    var targetElement;
    targetElement = document.getElementById(thingId);

    if (targetElement.style.display == "none") {
        $("#" + thingId).show();
        RechercheLoad2(); 
        xt_med('C', '1', '<%= id1 %>::<%=id2 %>::rechercher', 'N')
    } else {
    $("#" + thingId).hide();
    } 
}


