function HandleBloc(Bloc)
{
	if (document.getElementById('BlocAgenda') == Bloc)
	{
		Bloc.src = "im/BlocAgendaBlue.jpg";
		document.getElementById('BlocPublication').src = "im/BlocPublication.jpg";
		document.getElementById('BlocCommission').src = "im/BlocCommission.jpg";
		
		document.getElementById('BlocSnippet').style.background="#6b8ac0";
		document.getElementById('BlocSnippet').innerHTML = 'Retrouvez les futurs évenements : ';
		
		if (document.getElementById('BlocInfosAgenda'))
			document.getElementById('BlocInfosAgenda').style.display = 'block';
		document.getElementById('BlocInfosPublications').style.display = 'none';
		document.getElementById('BlocInfosCommission').style.display = 'none';
		
	}
	
	if (document.getElementById('BlocPublication') == Bloc)
	{
		Bloc.src = "im/BlocPublicationGreen.jpg";
		document.getElementById('BlocAgenda').src = "im/BlocAgenda.jpg";
		document.getElementById('BlocCommission').src = "im/BlocCommission.jpg";
	
		document.getElementById('BlocSnippet').style.background="#c5ce5e";
		document.getElementById('BlocSnippet').innerHTML = 'Retrouvez la liste des publications :';
	
		if (document.getElementById('BlocInfosAgenda'))		
			document.getElementById('BlocInfosAgenda').style.display = 'none';
		document.getElementById('BlocInfosPublications').style.display = 'block';
		document.getElementById('BlocInfosCommission').style.display = 'none';
		
	}
	
	if (document.getElementById('BlocCommission') == Bloc)
	{
		Bloc.src = "im/BlocCommissionRed.jpg";
		document.getElementById('BlocPublication').src = "im/BlocPublication.jpg";
		document.getElementById('BlocAgenda').src = "im/BlocAgenda.jpg";
		
		document.getElementById('BlocSnippet').style.background="#ce003b";
		document.getElementById('BlocSnippet').innerHTML = 'Retrouvez la liste des sous commissions :';
		
		if (document.getElementById('BlocInfosAgenda'))
			document.getElementById('BlocInfosAgenda').style.display = 'none';
		document.getElementById('BlocInfosPublications').style.display = 'none';
		document.getElementById('BlocInfosCommission').style.display = 'block';

	}
	
}

function HandleHover(obj, image)
{
		obj.src = image;
		obj.src = imagehover;
	//alert(image.src);
}

function none()
{
	;
}