// JavaScript Document
var sound='on';

function setSound(value){
	sound = value;
	setLinks()
}

function sound_off(){
	sound = 'off';
	document.getElementById('sound').innerHTML = '';
	document.getElementById('img_sound').src = 'images/sound.gif';
}

function sound_on(){
	sound = 'on';
	document.getElementById('sound').innerHTML = '<embed src="sound.mp3" autoplay="true" hidden="true" loop="true"></embed>';
	document.getElementById('img_sound').src = 'images/mute.gif';
}

function renewSound(){
	if(sound == 'on'){ sound_off();}
	else{sound_on();}
	setLinks()
}

function setLinks(){
	var links = document.getElementsByTagName("a");
	var i=0;
	while(links[i]){
		if(links[i].id != "link_sound" && links[i].href.match("djleahs.com")!= null){
			var href = new Array();
			if(links[i].href.match("file")!= null){
				href = links[i].href.split('&');
				links[i].href = href[0] + '&sou='+sound;
			}
			else{
				href = links[i].href.split('?');
				links[i].href = href[0] + '?sou='+sound;
			}
		}
		i++;
	}
}