//gestion son nesquik club
var isSound;
initSound();

function initSound(){
	isSound =  true;
	var oldFunc = window.onload;
	window.onload = function(){
		if(oldFunc != null) oldFunc();
		document.getElementById("footerSonOff").style.display = "none";
	}

}

function playStopSoundFlash(){
	if(isSound){
		document.getElementById("footerSonOn").style.display = "none";
		document.getElementById("footerSonOff").style.display = "inline";
		stopMusicFlash();
		isSound = false;
	}else{
		playMusicFlash();
		isSound = true;
		document.getElementById("footerSonOff").style.display = "none";
		document.getElementById("footerSonOn").style.display = "inline";
	}
}
function playMusicFlash() {
	getMovieName("flashNesquik").callPlayMusicFunction(); 
}
function stopMusicFlash() {
	getMovieName("flashNesquik").callStopMusicFunction();
}

function getMovieName(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName]
   }
   else {
       return document[movieName]
   }
}
