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