// ****************************************************
//                Initialize Sound
// ****************************************************
soundManager.url = '../soundmanager/'; // 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('Deeper', 'mp3/DEEPER.mp3');
  soundManager.createSound('MidnightSouq', 'mp3/MidnightSouq.mp3');
  soundManager.createSound('Quicksand', 'mp3/QUICKSAND_ML.mp3');
  soundManager.createSound('Starlight', 'mp3/starlight_BM.mp3');
}

soundManager.onerror = function(){
}
