// JavaScript Document
// en fonction du navigateur... 
if ( document.all )
{ 
	// sur Internet Explorer on intercepte le 'Menu Contextuel' 
	document.oncontextmenu = clic_droit; 
}

if ( document.layers )
{ 
	// sur Netscape on intercepte le clic de la souris pour l'analyser ensuite... 
	document.captureEvents(Event.MOUSEDOWN); 
	document.onmousedown = clic_droit; 
}

<!--
function clickIE4()
{
	if (event.button==2)
	{
		return false;
	}
}

function clickNS4(e)
{
	if (document.layers||document.getElementById&&!document.all)
	{
		if (e.which==2||e.which==3)
		{
			return false;
		}
	}
}

if (document.layers)
{
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById)
{
	document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("return false")
// -->

function clic_droit(evenement)
{ 
	// action pour Internet Explorer (sur 'Menu Contextuel') 
	if ( document.all )
	{ 
		alert('Le clique droit de la souris est désactivé.'); 
		return false; 
	}
	else if ( document.layers )
	{ 
		// pour Netscape, si le clic a été effectué sur le bouton droit (which == 3) 
		if ( evenement.which == 3 )
		{ 
			alert('Le clique droit de la souris est désactivé.'); 
			return false; 
		} 

		// si le clic standard a été accompagné d'une touche (touche 2 = Control, nécessaire pour le 'clic-droit' sur les souris à 1 bouton des Macs) 
		if ( evenement.modifiers == 2 )
		{ 
			alert('Le clique droit de la souris est désactivé.'); 
			return false; 
		} 
	} 
	return true; 
}

/*
* JQuery POUR LA GALLERIE DE PUBLICATIONS
*/
$(document).ready(function(){  
  $('#latest li').hover(
    function() {
      if ($.browser.msie) { $('span.info-2', this).css('display','block'); }
      else { $('span.info-2', this).fadeIn('fast'); }
    },
    function() {
      if ($.browser.msie) { $('span.info-2', this).css('display','none'); }
      else { $('span.info-2', this).fadeOut('fast');}
    }
  );
});

/*
* JAVSCRIPT FONTS
*/
Cufon.replace('#menu',{
	hover: {
		textShadow: '1px 1px #e8e8e8',
		color: '#0334b1'
	}
});
Cufon.replace('#textes h1.titre', {
	textShadow: '1px 1px rgba(0, 0, 0, 0.2)'
});
