var layer_info_bulle;

var t_mots = new Array;
	
t_mots[0] = new MOT_INFO_BULLE("BTP", "Bâtiment et Travaux Publics");
t_mots[1] = new MOT_INFO_BULLE("CHSCT", "Comité d'Hygiène de Sécurité et des  Conditions de Travail");
t_mots[2] = new MOT_INFO_BULLE("CISSCT", "Collège Interentreprises de Santé, Sécurité et des Conditions de travail");
t_mots[3] = new MOT_INFO_BULLE("D.R.T.E.P.F.", "Direction Régionale du Travail de l'Emploi et de la Formation Professionnelle");
t_mots[4] = new MOT_INFO_BULLE("D.U.", "Document Unique");
t_mots[5] = new MOT_INFO_BULLE("D.U.E.", "Déclaration Unique d'Embauche");
t_mots[6] = new MOT_INFO_BULLE("M.I.R.T.M.O.", "Médecin Inspecteur Régional du Travail et de la Main d'Oeuvre");
t_mots[7] = new MOT_INFO_BULLE("S.I.S.T.", "Service Interentreprises de Santé au Travail");
t_mots[8] = new MOT_INFO_BULLE("S.M.R.", "Surveillance Médicale Renforcée");

function cacher_info_bulle()
{
	layer_cacher(null,layer_info_bulle);
}

function info_bulle(id_mot)
{

	texte = t_mots[id_mot].explication;
	
	if (layer_info_bulle == void(layer_info_bulle))
	{
		layer_info_bulle = layer_creer("o_layer_info_bulle", 0, 0, 0, 0, "hidden", null);
	}
	
	emballage_debut = "<span class=info_bulle><nobr>";
	emballage_fin = "</nobr></span>";
	
	layer_ecrire_contenu(null, emballage_debut+texte+emballage_fin, layer_info_bulle);
	layer_positionner(null, POSITION_SOURIS_X+5, POSITION_SOURIS_Y-20, layer_info_bulle);
	layer_montrer(null,layer_info_bulle);
	
	return;
}

function MOT_INFO_BULLE(mot_affiche, explication)
{
	this.mot_affiche = mot_affiche;
	this.explication = explication;
}

function texte_avec_info_bulle(id_mot)
{
	var affichage = "";
	affichage = "<span onmouseover='info_bulle("+id_mot+")' onmouseout='cacher_info_bulle();' class='mot_avec_info_bulle'>"+t_mots[id_mot].mot_affiche+"</span>"
	
	document.write(affichage);
}
