soundManager.debugMode = false; // disable debug output

soundManager.url = 'soundmanager2.swf'; // path to movie

soundManager.onload = function() {
	soundManager.createSound('s0','cow.mp3');
	soundManager.createSound('s1','cowbell.mp3');
	soundManager.createSound('s2','cow2.mp3');
	soundManager.createSound('s3','cow3.mp3');
	soundManager.createSound('s4','cow4.mp3');
	soundManager.createSound('s5','cow5.mp3');
	soundManager.createSound('s6','cow6.mp3');

//	soundManager._writeDebug('soundManager.onload() - your code executes here');
}


