// Sound Bytes anchor JavaScript support

var sb = Array();

sb[0] = "Advert.mp3";
sb[1] = "Advert2.mp3";
sb[2] = "Advert3.mp3";
sb[3] = "AliveAndWell.mp3";
sb[4] = "ChurchKiller.mp3";
sb[5] = "DangerousWord.mp3";
sb[6] = "EmptyNets.mp3";
sb[7] = "EndingTheDrought.mp3";
sb[8] = "Revolution.mp3";

function getSoundByte() {
// get a random sound byte from the sb play list
	var r = Math.round(8*Math.random());
	window.location.href = "/audio/" + sb[r];
	return;
}
