// JavaScript Document
//<!--
window.onload = initJS();
function getElementWithId(id){
    var obj;
    if(document.getElementById){ obj = document.getElementById(id); }
	else if(document.all){ obj = document.all[id]; }
	else if(document.layers){ obj = document.layers[id]; }
    return obj||null;
}
function initJS(){
	a = setTimeout( function(){
			getElementWithId('jeu').setAttribute('class','show')
			getElementWithId('jeu').setAttribute('className','show')
			getElementWithId('flash').setAttribute('class','hide')
			getElementWithId('flash').setAttribute('className','hide')	
		}, 10000 // Limite de temps en ms secondes
		)
}
//-->
