soundManager.url = "/sm/";
soundManager.onload = function() {

// the real mystery of things

var trmotSound = soundManager.createSound({
id: "trmot",
url: "mp3/intro.mp3",
volume: 100,
autoLoad: true,
autoPlay: true
});
trmotSound.play();


var appearSound = soundManager.createSound({
id: "appear",
url: "mp3/appear.mp3",
volume: 100,
autoLoad: true,
autoPlay: false
});

var whistleSound = soundManager.createSound({
id: "whistle",
url: "mp3/whistle.mp3",
volume: 25,
autoLoad: false,
autoPlay: false
});

var extraSound = soundManager.createSound({
id: "men",
url: "mp3/men-make-men-make-women.mp3",
volume: 100,
autoLoad: true,
autoPlay: false
});

}