diff --git a/audio/et7.mp3 b/audio/et7.mp3 new file mode 100644 index 0000000..50c788a Binary files /dev/null and b/audio/et7.mp3 differ diff --git a/audio/et7.ogg b/audio/et7.ogg new file mode 100644 index 0000000..c5267ad Binary files /dev/null and b/audio/et7.ogg differ diff --git a/audio/et8.mp3 b/audio/et8.mp3 new file mode 100644 index 0000000..b0b5b21 Binary files /dev/null and b/audio/et8.mp3 differ diff --git a/audio/et8.ogg b/audio/et8.ogg new file mode 100644 index 0000000..55d6867 Binary files /dev/null and b/audio/et8.ogg differ diff --git a/et.js b/et.js index 511b85a..049a5a3 100644 --- a/et.js +++ b/et.js @@ -5,7 +5,7 @@ dojo.addOnLoad(function() { soundManager.useFlashBlock = false; // optionally, enable when you're ready to dive in soundManager.debugMode = false; soundManager.onready(function() { - for (var i = 0; i < 6; i++) { + for (var i = 0; i < 8; i++) { var j = i + 1; soundManager.createSound({ autoload: true, @@ -75,7 +75,7 @@ dojo.addOnLoad(function() { }); function random_file() { - num = 1 + (Math.floor(Math.random()*6)); - //num = 6; + num = 1 + (Math.floor(Math.random()*8)); + //num = 8; return 'etsound' + num; }