jQuery(document).ready(function() {
    jQuery('a.picto_menu img').hover(function() {
        this.src = this.src.replace(".gif","_over.gif");
    }, function() { this.src = this.src.replace("_over.gif",".gif"); } );

    jQuery('table.cadre td.h, table.cadre td.hg, table.cadre td.hd, table.cadre td.b, table.cadre td.bg, table.cadre td.bg, table.cadre td.g, table.cadre td.d, .msg_erreur, .msg_info, .msg_success, .msg_warning').pngfix();
});