var elementTxt; 
var myinterval;

function Init() 
{ 
	lancer_anim();
} 

function lancer_anim(){
	document.getElementById('img_tattoo').src="./images/petit_tattoo.png";
	document.getElementById('img_tattoo').style.left ="498px";
	document.getElementById('img_tattoo').style.top ="347px";
	elementTxt = document.getElementById("txtClignotant"); 
	myinterval = window.setInterval("Clignoter()", 100); 
}

function clearall()
{
	clearInterval(myinterval);
}

function affiche_grand_tattoo()
{
	document.getElementById('img_tattoo').src="./images/grand_tattoo.png";
	document.getElementById('img_tattoo').style.left ="319px";
	document.getElementById('img_tattoo').style.top ="273px";
	document.getElementById("img_tattoo").style.display = "inline";	
}

function Clignoter() 
{ 
	randomNum = Math.random();
	if(randomNum <= 0.12){
		document.getElementById("txtClignotant").style.display = "none";
	}
	else {
		document.getElementById("txtClignotant").style.display = "inline";
	}
}

function InitIE() 
{ 
	lancer_animIE();
} 

function lancer_animIE(){
	document.getElementById('img_tattoo').src="./images/petit_tattoo.png";
	document.getElementById('img_tattoo').style.left ="498px";
	document.getElementById('img_tattoo').style.top ="347px";
	elementTxt = document.getElementById("txtClignotant"); 
	myinterval = window.setInterval("ClignoterIE()", 100); 
}

function clearallIE()
{
	clearInterval(myinterval);	
	document.getElementById('img_tattoo').src="./images/grand_tattoo.png";
	document.getElementById('img_tattoo').style.left ="319px";
	document.getElementById('img_tattoo').style.top ="273px";
	document.getElementById("img_tattoo").style.display = "inline";
	document.getElementById("txtClignotant").style.display = "inline";
}

function ClignoterIE() 
{ 
	randomNum = Math.random();
	if(randomNum <= 0.12){
		document.getElementById("txtClignotant").style.display = "none";
	}
	else {
		document.getElementById("txtClignotant").style.display = "inline";
	}
}


