Funny thing is I tried a .mp3 and it worked.
So this works:
var sound = new Audio;
sound.src = 'http://mcgraw-hill.faceyspacey.com/rocket-blast-3-v13/media.mp3';
sound.play();
but this doesn't:
var sound = new Audio;
sound.src = 'http://mcgraw-hill.faceyspacey.com/rocket-blast-3-v13/media.m4a';
sound.play();
I thought IE9 was supporting .m4a as well. Whatsup with that?