$(document).ready
(
function()
	{
$('div.site > ul > li > a').addClass('accordionHeader');

$('div.site > ul > li > ul').hide();
var arrClose = new Array();

//var artistiqueLink = $('#artistiqueLink');
//artistiqueLink.children('ul').show();
//artistiqueLink.css('background-color', '#8875ad');

$('div.site > ul > li').hover
(
	function ()
 	{
	var colorMenu;
	var idMenu = $(this).attr("id");
	if (idMenu == null) {
		idMenu = $(this).attr("class");	
	}
	var colorText = '';
	if (idMenu == 'artistiqueLink')	{colorMenu = '#8875ad';}
	else if (idMenu == 'partenairesLink')	{colorMenu = '#88cbc2';}
	else if (idMenu == 'laForgeLink')	{colorMenu = '#e95872';}
	else if (idMenu == 'contactLink')	{colorMenu = '#e97117';}
	else if (idMenu == 'espaceProsLink')	{colorMenu = '#0baee8';}
	else if (idMenu == 'multimediaLink')	{colorMenu = '#a6d30b';}
	else if (idMenu == 'labelForgeLink')	{colorMenu = '#f0f0f0'; colorText = '#000000';}
	
	$(this).css('background-color', colorMenu);
	$(this).children('a').css('color', colorText);
	$(this).children('li>a').css('color', colorText);

	$(this).children('ul').show();
	}
	,
	function ()
	{
		var idMenu = $(this).attr("id");
		if (idMenu == null) {
			idMenu = $(this).attr("class");	
		}		
		$(this).css('background-color', '');
		$(this).children('ul').hide();
		$(this).children('a').css('color', '');
		$(this).children('li>a').css('color', '');
	}

);

	}
);
