var Audio = {

    cName: 'audioMute',
    cPath: '/',
    duration: 7,
    
    set: function(value)
    {
        Cookie.remove(this.cName);
        Cookie.set(this.cName,
                   (('true' == value) ? 'on' : 'off'),      //sentinel the value to set
                   {path: this.cPath, duration: this.duration});
    },
    
    getFlashConf: function()
    {
        return ('off' == Cookie.get(this.cName)) ? 'false' : 'true';
    }
};
