	soundManager = new SoundManager(sm_path);

	soundManager.debugMode = false;
	soundManager.consoleOnly = false;

	soundManager.onload = function() {
  		// soundManager is initialised, ready to use. Create a sound for this demo page.
  		soundManager.createSound('switchClick','./inc/soundmanager/audio/button_switch_click.mp3');
  		soundManager.createSound('switchZap','./inc/soundmanager/audio/button_switch_zap.mp3');
  		soundManager.createSound('switchSlide','./inc/soundmanager/audio/window_open.mp3');
  		soundManager.createSound('switchRoll','./inc/soundmanager/audio/button_roll.mp3');
  		
  		soundManager.createSound('switchInteractive','./inc/soundmanager/audio/button_interactive.mp3');
  		
  		soundManager.createSound('eventNew','./inc/soundmanager/audio/event_new1.mp3');
  		soundManager.createSound('messageSend','./inc/soundmanager/audio/message_send.mp3');
	}
	


