function showDHTML( e, adresse, numero  ){
	document.getElementById( "modalContainer" ).style.visibility = "visible";
	document.getElementById( "modalContainer" ).style.display = "block";
	document.getElementById( "modalContainerImg" ).src = "photo/"+adresse+"-"+numero+".jpg";	
}

function showDHTMLSIMPLE( e, adresse  ){
	document.getElementById( "modalContainer" ).style.visibility = "visible";
	document.getElementById( "modalContainer" ).style.display = "block";
	document.getElementById( "modalContainerImg" ).src = "photo/"+adresse+".jpg";	
}

function hideDHTML(){
	document.getElementById( "modalContainer" ).style.visibility = "hidden";
	document.getElementById( "modalContainer" ).style.display = "none";
}

$(document).ready(function(){

if(document.all) { 
      document.onselectstart = handleSelectAttempt; 
  } 
  document.onmousedown = handleSelectAttempt;
  
  $(document).bind("contextmenu",function(e){  
	//Votre code ici (par exemple votre menu contextuel
	//Puis désactivation du menu par défaut
	return false;  
});
	
$("span.addthis_button").css({ cursor:"pointer" }).click(function () {
	
	var url = 'http://www.addthis.com/bookmark.php?v=250&amp;username=hvignoble';	
	window.open(url); return false;	 
	
	})
	
})
 
function handleSelectAttempt(e) { 
    var sender = e && e.target || window.event.srcElement; 

    if (window.event) { 
        event.returnValue = false; 
    } 
    return true; 
}