eridan,
function setcookie(a,b,c) {if(c){var d = new Date();d.setTime(d.getTime()+c);}if(a && b) document.cookie = a+'='+ encodeURIComponent(b) +(c ? '; expires='+d.toUTCString() : '');else return false;}
function getcookie(a) {var b = new RegExp(a+'=([^;]){1,}');var c = b.exec(document.cookie);if(c) c = c[0].split('=');else return false;return c[1] ? decodeURIComponent(c[1]) : false;}
soundButton.click(function() {
if(!sound) sound = 1;
if (sound == 1) {
setcookie("sound","1",30*3600*24*30*1000);
document.getElementById("sound").style.backgroundPosition = "0px";
audioLink.play();
} else if (sound == 0) {
setcookie("sound","0",30*3600*24*30*1000)
document.getElementById("sound").style.backgroundPosition = "-40px";
}
});
$(function () {
if (getcookie("sound") == "1") audioLink.play()
});