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('lunes_m');
soundManager.createSound('martes_m');
soundManager.createSound('miercoles_m');
soundManager.createSound('jueves_m');
soundManager.createSound('viernes_m');
soundManager.createSound('sabado_m');
soundManager.createSound('domingo_m');
soundManager.createSound('el_lunes_m');
soundManager.createSound('el_martes_m');
soundManager.createSound('el_miercoles_m');
soundManager.createSound('el_jueves_m');
soundManager.createSound('el_viernes_m');
soundManager.createSound('el_sabado_m');
soundManager.createSound('el_domingo_m');
soundManager.createSound('cada_lunes_m');
soundManager.createSound('cada_martes_m');
soundManager.createSound('cada_miercoles_m');
soundManager.createSound('cada_jueves_m');
soundManager.createSound('cada_viernes_m');
soundManager.createSound('cada_sabado_m');
soundManager.createSound('cada_domingo_m');
}