Знатоки, пожалуйста, помогите решить проблему!)
Есть следующий скрипт случайного вывода текста:
<!DOCTYPE html>
<html>
<head>
<script language="JavaScript">
function rotateEvery(sec)
{
var Quotation=new Array()
Quotation[0] = 'First';
Quotation[1] = 'Second';
Quotation[2] = 'Third';
var which = Math.round(Math.random()*(Quotation.length - 1));
document.getElementById('textrotator').innerHTML = Quotation[which];
setTimeout('rotateEvery('+sec+')', sec*1000);
}
</script>
</head>
<body onload="rotateEvery(1)">
<div id="textrotator"></div>
</body>
</html>
Нужно, чтобы каждый случайный вывод текста сопровождался соответственным аудиофайлом.
Заранее благодарю!))