function montre(id) {
var d = document.getElementById(id);
var l = document.getElementById(id + '_link');
for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) { 
			document.getElementById('smenu'+i).style.display='none';
			document.getElementById('smenu'+i).style.zIndex='1';
		}
		if (document.getElementById('smenu'+i+'_link')) {
			document.getElementById('smenu'+i+'_link').className='';
		}
	}
if (d) {
	d.style.display='block';
	d.style.backgroundColor='#DBB44D';
	d.style.zIndex='60';
	}
if (l) {
	l.className='hoover';
	}
}

/* Mail decryption */
function decryptThis(s) {
	var n=0;
	var r="mailto:";
	for(var i=0;i<s.length;i++) { 
		n=s.charCodeAt(i); 
		if (n>=8364) {n = 128;}
		r += String.fromCharCode(n-(2)); 
	}
	return r;
}

function doMailto(s) {
	location.href=decryptThis(s);
}

$(document).ready(function() {
	$('.colorbox').colorbox(); 
	$('.colorboxyoutube').colorbox({iframe:true, innerWidth:425, innerHeight:344}); 
});