soundManager.url = '/sound/'; // directory where SM2 .SWFs live

// disable debug mode after development/testing..
soundManager.debugMode = false;

soundManager.onload = function() {
// SM2 has loaded - now you can create and play sounds!
soundManager.createSound('lundi_m');
soundManager.createSound('mardi_m');
soundManager.createSound('mercredi_m');
soundManager.createSound('jeudi_m');
soundManager.createSound('vendredi_m');
soundManager.createSound('samedi_m');
soundManager.createSound('dimanche_m');
soundManager.createSound('tous_les_lundis_m');
soundManager.createSound('tous_les_mardis_m');
soundManager.createSound('tous_les_mercredis_m');
soundManager.createSound('tous_les_jeudis_m');
soundManager.createSound('tous_les_vendredis_m');
soundManager.createSound('tous_les_samedis_m');
soundManager.createSound('tous_les_dimanches_m');
soundManager.createSound('le_lundi_m');
soundManager.createSound('le_mardi_m');
soundManager.createSound('le_mercredi_m');
soundManager.createSound('le_jeudi_m');
soundManager.createSound('le_vendredi_m');
soundManager.createSound('le_samedi_m');
soundManager.createSound('le_dimanche_m');
}