soundManager.url = '/swf/'; // directory where SM2 .SWFs live
soundManager.debugMode = false;
  
soundManager.onload = function() {
	cookiePlayer = readCookie('play');
	if(cookiePlayer!=1) {
		createCookie('play', 1);	
		// SM2 has loaded - now you can create and play sounds!
		soundManager.createSound('hello','/audio/adriaeco.mp3');
		soundManager.play('hello', {volume:100});
	}
};
