// JavaScript Document
function rolloutCategorie(cible)
{
	cible.style.background = 'none';
	cible.style.color = '#666';
	cible.getElementsByTagName('a')[0].style.color='#006499';
}

function rolloverCategorie(cible)
{
	cible.style.cursor = 'pointer';
	cible.style.background = '#0f8ec1 url(../images/design/fond3.jpg) bottom repeat-x';
	cible.style.color = '#fff';
	cible.getElementsByTagName('a')[0].style.color='#fff';
}

window.onload = function()
{
	var menu = document.getElementById('menu-secondaire');
	var corps = document.getElementById('corps');
	
	if(corps.offsetHeight > menu.offsetHeight)
	{
		menu.style.height = corps.offsetHeight + 'px';
	}
}
