var myListener = new Object();


function _getFlashObject(){
    return document.getElementById("myFlash");
}
function play() {
    if (typeof(myListener.url) == "undefined") {
        _getFlashObject().SetVariable("method:setUrl", 'mp3/ouaoua.mp3');
    }
    _getFlashObject().SetVariable("method:play", "");
}
function stop() {
    _getFlashObject().SetVariable("method:stop", "");
}
/**
* Initialize
*/
myListener.onInit = function(){
}
myListener.onInitial = function(){
    _getFlashObject().SetVariable("method:setUrl", 'mp3/ouaoua.mp3');
    if($.cookie("vson") == null){
        vson = 50
	$.cookie("vson",50,{ expires: 15 })
        play();
    }else{
        vson = $.cookie("vson")
	if(vson == 0){
            $('#controle_son img').attr('src','images/son_off.gif')
	}else{
            play();
        }
    }
};
