// custom soundmanager settings
soundManager.url= 'sm/swf/';
soundManager.debugMode = false;
soundManager.onload = function() {
	soundManager.loadFromXML('sm/script/castor_sounds.xml');
}


function loopSound(soundID) {
	window.setTimeout(function() {
		soundManager.play(soundID,{onfinish:function(){loopSound(soundID);}});
	},1);
}

