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('que_color_es_m');
soundManager.createSound('de_que_color_es_m');
soundManager.createSound('blanco_m');
soundManager.createSound('negro_m');
soundManager.createSound('rojo_m');
soundManager.createSound('amarillo_m');
soundManager.createSound('azul_m');
soundManager.createSound('verde_m');
soundManager.createSound('gris_m');
soundManager.createSound('naranja_m');
soundManager.createSound('rosa_m');
soundManager.createSound('violeta_m');
soundManager.createSound('marron_m');
soundManager.createSound('tonalidad_del_color_m');
soundManager.createSound('verde_claro_m');
soundManager.createSound('marron_claro_m');
soundManager.createSound('azul_claro_m');
soundManager.createSound('verde_oscuro_m');
soundManager.createSound('marron_oscuro_m');
soundManager.createSound('azul_oscuro_m');
}