Если используете jQuery, то вот так:
//-------------------------- Функция проигрыша звука -------------------------//
function PlaySound(sound){
// Проверяем настройки выключения звуков
if (options.sound == 1) {
if ($.browser.msie) $("#sound_player").html('<embed src="sounds/'+sound+'.wav" autostart="true" loop="0" height="0px" width="0px" type="audio/wav"></embed>');
else $("#sound_player").html('<audio autoplay autobuffer><source src="sounds/'+sound+'.ogg" /><source src="sounds/'+sound+'.mp3" /></audio>');
}
}
//----------------------------------------------------------------------------//
options.sound - переменная включения звуков