var vote_news=false;
var nom_menu=false;
var nom_block=false;

function etoile(nom,numero){
	if(vote_news==false){
		for(i=1;i<=numero;i++){
			document.getElementById(nom+i).src='images/icone-etoile-pleine.gif';
		}
		for(i=numero+1;i<=5;i++){
			document.getElementById(nom+i).src='images/icone-etoile-vide.gif';
		}
	}
}

function show_hide(nom){
	if(nom_block!=false){
		document.getElementById(nom_block).style.display='none';
	}
	document.getElementById(nom).style.display='block';
	nom_block=nom;
}

function hide(){
	try{
		if(nom_block!=false){
			document.getElementById(nom_block).style.display='none';
		}
	}
	catch(e){
		return(false);
	}
}

function show_hide_menu(nom){
	if(nom_menu!=false){
		document.getElementById(nom_menu).style.display='none';
	}
	document.getElementById(nom).style.display='block';
	nom_menu=nom;
}

function hide_menu(){
	if(nom_menu!=false){
		document.getElementById(nom_menu).style.display='none';
	}
}

function hide_all() {
	hide();
	hide_menu();
}

document.onclick=hide_all;
