<!--
window.onload=montre;
function montre(i) {
	var d = document.getElementById('menu_'+i);
	var d2 = document.getElementById('link_'+i);
	for (var i = 0; i<=10; i++) {
		if (document.getElementById('menu_'+i)) document.getElementById('menu_'+i).style.display='none';
		if (document.getElementById('link_'+i)) document.getElementById('link_'+i).className='menu_link';
	}
	if (d) { d.style.display='block'; }
	if (d2) { d2.className='menu_link_hover'; }
}

function contact(){
	document.getElementById('ContactBlock1Hover').style.display = 'block';
	document.getElementById('Navig').style.display = 'none';
}
function uncontact(){
	document.getElementById('ContactBlock1Hover').style.display = 'none';
	document.getElementById('Navig').style.display = 'block';
}
//-->
