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('lunedi_m');
soundManager.createSound('martedi_m');
soundManager.createSound('mercoledi_m');
soundManager.createSound('giovedi_m');
soundManager.createSound('venerdi_m');
soundManager.createSound('sabato_m');
soundManager.createSound('domenica_m');
soundManager.createSound('ogni_lunedi_m');
soundManager.createSound('ogni_martedi_m');
soundManager.createSound('ogni_mercoledi_m');
soundManager.createSound('ogni_giovedi_m');
soundManager.createSound('ogni_venerdi_m');
soundManager.createSound('ogni_sabato_m');
soundManager.createSound('ogni_domenica_m');
}