Disable right click
Use jquery to disable right click
Add the following code in the <head> of your webpage
<script type=”text/javascript”>
$(document).ready(function(){
$(”img”).bind(”contextmenu”,function(e){
return false;
});
});
</script>
I had used this on my drupal site in page.tpl file