// JavaScript Document
function flagover (id) {
	document.getElementById(id).src = "../img/"+id+".jpg";
}

function flagout (id) {
	document.getElementById(id).src = "../img/"+id+"-none.jpg";
}


function allchange() {
	document.getElementById('health').style.display = 'none';
	document.getElementById('health').style.paddingLeft = "220px"; 
	document.getElementById('immo').style.display = 'none';
	document.getElementById('immo').style.paddingLeft = "350px"; 
	document.getElementById('participations').style.display = 'none';
	document.getElementById('participations').style.paddingLeft = "400px"; 
	document.getElementById('batipart').style.display = 'none';
	
	document.getElementById('health_menu').style.backgroundImage = "url('inc/img/background-menu.jpg')";
	document.getElementById('immo_menu').style.backgroundImage = "url('inc/img/background-menu.jpg')";
	document.getElementById('participations_menu').style.backgroundImage = "url('inc/img/background-menu.jpg')";
	document.getElementById('batipart_menu').style.backgroundImage = "url('inc/img/background-menu.jpg')";
	document.getElementById('batipart_menu').style.backgroundImage = "url('inc/img/background-menu.jpg')";
	
	document.getElementById('health_menu').style.color = "#FFFFFF";
	document.getElementById('immo_menu').style.color = "#FFFFFF";
	document.getElementById('participations_menu').style.color = "#FFFFFF";
	document.getElementById('batipart_menu').style.color = "#FFFFFF";
	
}

function change(id) {
	allchange();
	if(id != 'contact' && id!= 'international') {
		document.getElementById(id).style.display = 'block';
		document.getElementById(id+'_menu').style.backgroundImage = "url('inc/img/background-menu-hover.jpg')";
		document.getElementById(id+'_menu').style.color = "#2e506b";
	}
	
	//Decalage
	
}

window.onload = function() {
	allchange();
}

function popupcentree(page,largeur,hauteur,options) {     var top=(screen.height-hauteur)/2;     var left=(screen.width-largeur)/2;     window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options); } 

