// Préchargement des images CSS
$(window).load(function () {
    $.preloadCssImages();
});

$(document).ready(function() {
/* ---------------------------------------------------------------------
   Messages
--------------------------------------------------------------------- */
    $("#messages li").click(function() {
        $(this).slideUp();
    });

/* ---------------------------------------------------------------------
   Menu
--------------------------------------------------------------------- */
    $(".section").hover(function() /* mouseover */
    {
        $(".sous-menu").stop(false, true);
        $(".sous-menu:visible").slideUp("fast");
        $(this).find("ul:hidden").slideDown("fast");
    },
    function() /* mouseout */
    {
        $(this).stop(false, true);
        $(this).find("ul:visible").slideUp("fast");
    });

/* ---------------------------------------------------------------------
   Mails
--------------------------------------------------------------------- */
    $('.spemail').spemail('|,:','mailbase');

/* ---------------------------------------------------------------------
   Connexion
--------------------------------------------------------------------- */
    $('#h-password').hide();
    $('#h-username').focusin(function() {
        var th = $(this);
        if (th.val() == 'Nom d\'utilisateur')
            th.val('');
    });
    $('#h-password-text').show().focusin(function() {
        $(this).hide();
        $('#h-password').show().focus();
    });
    $('#h-username').focusout(function() {
        var th = $(this);
        if (th.val() == '')
            th.val('Nom d\'utilisateur');
    });
});
