﻿$('#jqueryLoadingDiv').ajaxError(function(e, xhr, settings, exception) {
    try {
        msg = eval('(' + xhr.responseText + ')');
        alert(msg.Message);
    } catch (ex) {
        alert("Une erreur est survenue : " + xhr.statusText + "\r\nSi le problème persiste, contactez-nous !");
    }
});

$('#jqueryLoadingDiv').ajaxStart(function() {
    $(this).show();
});

$('#jqueryLoadingDiv').ajaxStop(function() {
    $(this).hide();
});

$(document).ready(function() {
    jQuery("li.headLink").hover(
        function() {
            jQuery("div.wholemenu", this).show();
            jQuery(this).addClass('on');
        },
        function() {
            jQuery("div.wholemenu", this).hide();
            jQuery(this).removeClass('on');
        }
    );
});
