if (jQuery) {
$(function() {
$("#JQUERYTEST").toggleClass("TEST_1");
$(".TEST_1").addClass("TEST_2");
$(".TEST_2").removeClass("TEST_1").removeClass("TEST_2");
$("#BLOC").load("index-inc.html", finalisation);
//jQuery.get("test.xml", "",finalisation,"xml");
finalisation();
});

}

/*function finalisation(xmlDoc) {
if (xmlDoc.documentElement.tagName == "test-jquery") {
$("#MESSAGE_TEST").empty().append("JQuery est opérationnel sur votre navigateur. Vous aurez accès à toutes les fonctions de l'interface");
}
}*/

function finalisation() {
$("#JQUERYTEST").hide();
}


