function valoreCookie (nome) {
    var valore=document.cookie; //ottiene la stringa di cookie
    var inizioCookie=valore.indexOf(" " + nome + "="); //trova il cookie desiderato

    //se non esiste, magari è all'inizio della stringa
    if (inizioCookie == -1) {
        inizioCookie = valore.indexOf(nome + "=");
    }

    if (inizioCookie == -1) { //il cookie non esiste proprio
        valore = null;
    }

    if (inizioCookie >= 0) { //il cookie esiste
        //qui inizia la stringa del valore
        inizioCookie = valore.indexOf("=", inizioCookie) + 1;
        var fineCookie = valore.indexOf(";", inizioCookie); //qui finisce
        if (fineCookie == -1)  //se non viene trovato, allora è l'ultimo cookie
            fineCookie = valore.length;
        //elimina i caratteri commutati
        valore = unescape(valore.substring(inizioCookie, fineCookie));
    }

    return valore;
}

function toggleSound(){
    if(musicstatus == 'on' || musicstatus == null){
        document.getElementById('toggleSound').className = "play";
        musicstatus = 'off';
        document.cookie = "statomusica=off;";
        soundManager.stop('myLoop');
    }
    else{
        document.getElementById('toggleSound').className = "stop";
        musicstatus = 'on';
        document.cookie = "statomusica=on;";
        soundManager.play('myLoop');
    }
}
