var backgroundcolor_out;
var backgroundcolor_over;
backgroundcolor_out = "#FFFFFF";
backgroundcolor_over = "#317FA2";
//################################# MENU HAUT #################################
function rollover_menu_haut (document) {
	document.style.backgroundColor=backgroundcolor_over;
	//document.style.cursor='pointer';
}
function rollout_menu_haut (document) {
	document.style.backgroundColor=backgroundcolor_out;
	//document.style.cursor='pointer';
}
function rollover_actif_menu_haut (document) {
	document.style.backgroundColor=backgroundcolor_over;
	//document.style.cursor='pointer';

}
function rollout_actif_menu_haut (document) {
	document.style.backgroundColor=backgroundcolor_over;
	//document.style.cursor='pointer';
}

function rollover_menu_haut_1 (id, total) {
	if (id==0) {
		document.getElementById("menu_haut_left_1_"+id).style.backgroundImage="url(maj/phototheque/photos/charte/onglet_left_1_over.jpg)";
	}
	else{
		document.getElementById("menu_haut_left_2_"+id).style.backgroundImage="url(maj/phototheque/photos/charte/onglet_left_2_over.jpg)";
	}
	document.getElementById("menu_haut_repeat_"+id).style.backgroundImage="url(maj/phototheque/photos/charte/onglet_repeat_over.jpg)";
	if ((id+1)==total) {
		document.getElementById("menu_haut_right_1_"+id).style.backgroundImage="url(maj/phototheque/photos/charte/onglet_right_1_over.jpg)";
	}
	else {
		document.getElementById("menu_haut_right_2_"+id).style.backgroundImage="url(maj/phototheque/photos/charte/onglet_right_2_over.jpg)";
	}
}
function rollout_menu_haut_1 (id, total) {
	if (id==0) {
		document.getElementById("menu_haut_left_1_"+id).style.backgroundImage="url(maj/phototheque/photos/charte/onglet_left_1_out.jpg)";
	}
	else {
		document.getElementById("menu_haut_left_2_"+id).style.backgroundImage="url(maj/phototheque/photos/charte/onglet_left_2_out.jpg)";
	}
	document.getElementById("menu_haut_repeat_"+id).style.backgroundImage="url(maj/phototheque/photos/charte/onglet_repeat_out.jpg)";
	if ((id+1)==total) {
		document.getElementById("menu_haut_right_1_"+id).style.backgroundImage="url(maj/phototheque/photos/charte/onglet_right_1_out.jpg)";
	}
	else {
		document.getElementById("menu_haut_right_2_"+id).style.backgroundImage="url(maj/phototheque/photos/charte/onglet_right_2_out.jpg)";
	}
}
//################################# MENU HAUT #################################
function depliemenu(id)
{
	document.getElementById("s_menu"+id).style.display=document.getElementById("s_menu"+id).style.display=="none"?"block":"none";
}
function deplie_click_menu(id)
{
	var divs=document.getElementsByTagName("div");
	for(var i=0 ; i<divs.length ; i++)
	{
		if(divs[i].id.match("^s_menu"))
		{
			if(divs[i].id=='s_menu'+id)
			{
				divs[i].style.display="block";
			}
			else
			{
				divs[i].style.display="none";
			}
		}			
	}
}
function depliemenuoff()
{
	var divs=document.getElementsByTagName("div");
	for(var i=0 ; i<divs.length ; i++)
	{
		if(divs[i].id.match("^s_menu"))
		{
			divs[i].style.display= "none";
		}			
	}
}
